pack.py 67 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040
  1. # pack.py -- For dealing with packed 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. """Classes for dealing with packed git objects.
  22. A pack is a compact representation of a bunch of objects, stored
  23. using deltas where possible.
  24. They have two parts, the pack file, which stores the data, and an index
  25. that tells you where the data is.
  26. To find an object you look in all of the index files 'til you find a
  27. match for the object name. You then use the pointer got from this as
  28. a pointer in to the corresponding packfile.
  29. """
  30. from collections import defaultdict
  31. import binascii
  32. from io import BytesIO, UnsupportedOperation
  33. from collections import (
  34. deque,
  35. )
  36. import difflib
  37. import struct
  38. from itertools import chain
  39. try:
  40. from itertools import imap, izip
  41. except ImportError:
  42. # Python3
  43. imap = map
  44. izip = zip
  45. import os
  46. import sys
  47. from hashlib import sha1
  48. from os import (
  49. SEEK_CUR,
  50. SEEK_END,
  51. )
  52. from struct import unpack_from
  53. import zlib
  54. try:
  55. import mmap
  56. except ImportError:
  57. has_mmap = False
  58. else:
  59. has_mmap = True
  60. # For some reason the above try, except fails to set has_mmap = False for plan9
  61. if sys.platform == 'Plan9':
  62. has_mmap = False
  63. from dulwich.errors import ( # noqa: E402
  64. ApplyDeltaError,
  65. ChecksumMismatch,
  66. )
  67. from dulwich.file import GitFile # noqa: E402
  68. from dulwich.lru_cache import ( # noqa: E402
  69. LRUSizeCache,
  70. )
  71. from dulwich.objects import ( # noqa: E402
  72. ShaFile,
  73. hex_to_sha,
  74. sha_to_hex,
  75. object_header,
  76. )
  77. OFS_DELTA = 6
  78. REF_DELTA = 7
  79. DELTA_TYPES = (OFS_DELTA, REF_DELTA)
  80. DEFAULT_PACK_DELTA_WINDOW_SIZE = 10
  81. def take_msb_bytes(read, crc32=None):
  82. """Read bytes marked with most significant bit.
  83. :param read: Read function
  84. """
  85. ret = []
  86. while len(ret) == 0 or ret[-1] & 0x80:
  87. b = read(1)
  88. if crc32 is not None:
  89. crc32 = binascii.crc32(b, crc32)
  90. ret.append(ord(b[:1]))
  91. return ret, crc32
  92. class UnpackedObject(object):
  93. """Class encapsulating an object unpacked from a pack file.
  94. These objects should only be created from within unpack_object. Most
  95. members start out as empty and are filled in at various points by
  96. read_zlib_chunks, unpack_object, DeltaChainIterator, etc.
  97. End users of this object should take care that the function they're getting
  98. this object from is guaranteed to set the members they need.
  99. """
  100. __slots__ = [
  101. 'offset', # Offset in its pack.
  102. '_sha', # Cached binary SHA.
  103. 'obj_type_num', # Type of this object.
  104. 'obj_chunks', # Decompressed and delta-resolved chunks.
  105. 'pack_type_num', # Type of this object in the pack (may be a delta).
  106. 'delta_base', # Delta base offset or SHA.
  107. 'comp_chunks', # Compressed object chunks.
  108. 'decomp_chunks', # Decompressed object chunks.
  109. 'decomp_len', # Decompressed length of this object.
  110. 'crc32', # CRC32.
  111. ]
  112. # TODO(dborowitz): read_zlib_chunks and unpack_object could very well be
  113. # methods of this object.
  114. def __init__(self, pack_type_num, delta_base, decomp_len, crc32):
  115. self.offset = None
  116. self._sha = None
  117. self.pack_type_num = pack_type_num
  118. self.delta_base = delta_base
  119. self.comp_chunks = None
  120. self.decomp_chunks = []
  121. self.decomp_len = decomp_len
  122. self.crc32 = crc32
  123. if pack_type_num in DELTA_TYPES:
  124. self.obj_type_num = None
  125. self.obj_chunks = None
  126. else:
  127. self.obj_type_num = pack_type_num
  128. self.obj_chunks = self.decomp_chunks
  129. self.delta_base = delta_base
  130. def sha(self):
  131. """Return the binary SHA of this object."""
  132. if self._sha is None:
  133. self._sha = obj_sha(self.obj_type_num, self.obj_chunks)
  134. return self._sha
  135. def sha_file(self):
  136. """Return a ShaFile from this object."""
  137. return ShaFile.from_raw_chunks(self.obj_type_num, self.obj_chunks)
  138. # Only provided for backwards compatibility with code that expects either
  139. # chunks or a delta tuple.
  140. def _obj(self):
  141. """Return the decompressed chunks, or (delta base, delta chunks)."""
  142. if self.pack_type_num in DELTA_TYPES:
  143. return (self.delta_base, self.decomp_chunks)
  144. else:
  145. return self.decomp_chunks
  146. def __eq__(self, other):
  147. if not isinstance(other, UnpackedObject):
  148. return False
  149. for slot in self.__slots__:
  150. if getattr(self, slot) != getattr(other, slot):
  151. return False
  152. return True
  153. def __ne__(self, other):
  154. return not (self == other)
  155. def __repr__(self):
  156. data = ['%s=%r' % (s, getattr(self, s)) for s in self.__slots__]
  157. return '%s(%s)' % (self.__class__.__name__, ', '.join(data))
  158. _ZLIB_BUFSIZE = 4096
  159. def read_zlib_chunks(read_some, unpacked, include_comp=False,
  160. buffer_size=_ZLIB_BUFSIZE):
  161. """Read zlib data from a buffer.
  162. This function requires that the buffer have additional data following the
  163. compressed data, which is guaranteed to be the case for git pack files.
  164. :param read_some: Read function that returns at least one byte, but may
  165. return less than the requested size.
  166. :param unpacked: An UnpackedObject to write result data to. If its crc32
  167. attr is not None, the CRC32 of the compressed bytes will be computed
  168. using this starting CRC32.
  169. After this function, will have the following attrs set:
  170. * comp_chunks (if include_comp is True)
  171. * decomp_chunks
  172. * decomp_len
  173. * crc32
  174. :param include_comp: If True, include compressed data in the result.
  175. :param buffer_size: Size of the read buffer.
  176. :return: Leftover unused data from the decompression.
  177. :raise zlib.error: if a decompression error occurred.
  178. """
  179. if unpacked.decomp_len <= -1:
  180. raise ValueError('non-negative zlib data stream size expected')
  181. decomp_obj = zlib.decompressobj()
  182. comp_chunks = []
  183. decomp_chunks = unpacked.decomp_chunks
  184. decomp_len = 0
  185. crc32 = unpacked.crc32
  186. while True:
  187. add = read_some(buffer_size)
  188. if not add:
  189. raise zlib.error('EOF before end of zlib stream')
  190. comp_chunks.append(add)
  191. decomp = decomp_obj.decompress(add)
  192. decomp_len += len(decomp)
  193. decomp_chunks.append(decomp)
  194. unused = decomp_obj.unused_data
  195. if unused:
  196. left = len(unused)
  197. if crc32 is not None:
  198. crc32 = binascii.crc32(add[:-left], crc32)
  199. if include_comp:
  200. comp_chunks[-1] = add[:-left]
  201. break
  202. elif crc32 is not None:
  203. crc32 = binascii.crc32(add, crc32)
  204. if crc32 is not None:
  205. crc32 &= 0xffffffff
  206. if decomp_len != unpacked.decomp_len:
  207. raise zlib.error('decompressed data does not match expected size')
  208. unpacked.crc32 = crc32
  209. if include_comp:
  210. unpacked.comp_chunks = comp_chunks
  211. return unused
  212. def iter_sha1(iter):
  213. """Return the hexdigest of the SHA1 over a set of names.
  214. :param iter: Iterator over string objects
  215. :return: 40-byte hex sha1 digest
  216. """
  217. sha = sha1()
  218. for name in iter:
  219. sha.update(name)
  220. return sha.hexdigest().encode('ascii')
  221. def load_pack_index(path):
  222. """Load an index file by path.
  223. :param filename: Path to the index file
  224. :return: A PackIndex loaded from the given path
  225. """
  226. with GitFile(path, 'rb') as f:
  227. return load_pack_index_file(path, f)
  228. def _load_file_contents(f, size=None):
  229. try:
  230. fd = f.fileno()
  231. except (UnsupportedOperation, AttributeError):
  232. fd = None
  233. # Attempt to use mmap if possible
  234. if fd is not None:
  235. if size is None:
  236. size = os.fstat(fd).st_size
  237. if has_mmap:
  238. try:
  239. contents = mmap.mmap(fd, size, access=mmap.ACCESS_READ)
  240. except mmap.error:
  241. # Perhaps a socket?
  242. pass
  243. else:
  244. return contents, size
  245. contents = f.read()
  246. size = len(contents)
  247. return contents, size
  248. def load_pack_index_file(path, f):
  249. """Load an index file from a file-like object.
  250. :param path: Path for the index file
  251. :param f: File-like object
  252. :return: A PackIndex loaded from the given file
  253. """
  254. contents, size = _load_file_contents(f)
  255. if contents[:4] == b'\377tOc':
  256. version = struct.unpack(b'>L', contents[4:8])[0]
  257. if version == 2:
  258. return PackIndex2(
  259. path, file=f, contents=contents, size=size)
  260. else:
  261. raise KeyError('Unknown pack index format %d' % version)
  262. else:
  263. return PackIndex1(path, file=f, contents=contents, size=size)
  264. def bisect_find_sha(start, end, sha, unpack_name):
  265. """Find a SHA in a data blob with sorted SHAs.
  266. :param start: Start index of range to search
  267. :param end: End index of range to search
  268. :param sha: Sha to find
  269. :param unpack_name: Callback to retrieve SHA by index
  270. :return: Index of the SHA, or None if it wasn't found
  271. """
  272. assert start <= end
  273. while start <= end:
  274. i = (start + end) // 2
  275. file_sha = unpack_name(i)
  276. if file_sha < sha:
  277. start = i + 1
  278. elif file_sha > sha:
  279. end = i - 1
  280. else:
  281. return i
  282. return None
  283. class PackIndex(object):
  284. """An index in to a packfile.
  285. Given a sha id of an object a pack index can tell you the location in the
  286. packfile of that object if it has it.
  287. """
  288. def __eq__(self, other):
  289. if not isinstance(other, PackIndex):
  290. return False
  291. for (name1, _, _), (name2, _, _) in izip(self.iterentries(),
  292. other.iterentries()):
  293. if name1 != name2:
  294. return False
  295. return True
  296. def __ne__(self, other):
  297. return not self.__eq__(other)
  298. def __len__(self):
  299. """Return the number of entries in this pack index."""
  300. raise NotImplementedError(self.__len__)
  301. def __iter__(self):
  302. """Iterate over the SHAs in this pack."""
  303. return imap(sha_to_hex, self._itersha())
  304. def iterentries(self):
  305. """Iterate over the entries in this pack index.
  306. :return: iterator over tuples with object name, offset in packfile and
  307. crc32 checksum.
  308. """
  309. raise NotImplementedError(self.iterentries)
  310. def get_pack_checksum(self):
  311. """Return the SHA1 checksum stored for the corresponding packfile.
  312. :return: 20-byte binary digest
  313. """
  314. raise NotImplementedError(self.get_pack_checksum)
  315. def object_index(self, sha):
  316. """Return the index in to the corresponding packfile for the object.
  317. Given the name of an object it will return the offset that object
  318. lives at within the corresponding pack file. If the pack file doesn't
  319. have the object then None will be returned.
  320. """
  321. if len(sha) == 40:
  322. sha = hex_to_sha(sha)
  323. return self._object_index(sha)
  324. def object_sha1(self, index):
  325. """Return the SHA1 corresponding to the index in the pack file.
  326. """
  327. # PERFORMANCE/TODO(jelmer): Avoid scanning entire index
  328. for (name, offset, crc32) in self.iterentries():
  329. if offset == index:
  330. return name
  331. else:
  332. raise KeyError(index)
  333. def _object_index(self, sha):
  334. """See object_index.
  335. :param sha: A *binary* SHA string. (20 characters long)_
  336. """
  337. raise NotImplementedError(self._object_index)
  338. def objects_sha1(self):
  339. """Return the hex SHA1 over all the shas of all objects in this pack.
  340. :note: This is used for the filename of the pack.
  341. """
  342. return iter_sha1(self._itersha())
  343. def _itersha(self):
  344. """Yield all the SHA1's of the objects in the index, sorted."""
  345. raise NotImplementedError(self._itersha)
  346. class MemoryPackIndex(PackIndex):
  347. """Pack index that is stored entirely in memory."""
  348. def __init__(self, entries, pack_checksum=None):
  349. """Create a new MemoryPackIndex.
  350. :param entries: Sequence of name, idx, crc32 (sorted)
  351. :param pack_checksum: Optional pack checksum
  352. """
  353. self._by_sha = {}
  354. self._by_index = {}
  355. for name, idx, crc32 in entries:
  356. self._by_sha[name] = idx
  357. self._by_index[idx] = name
  358. self._entries = entries
  359. self._pack_checksum = pack_checksum
  360. def get_pack_checksum(self):
  361. return self._pack_checksum
  362. def __len__(self):
  363. return len(self._entries)
  364. def _object_index(self, sha):
  365. return self._by_sha[sha][0]
  366. def object_sha1(self, index):
  367. return self._by_index[index]
  368. def _itersha(self):
  369. return iter(self._by_sha)
  370. def iterentries(self):
  371. return iter(self._entries)
  372. class FilePackIndex(PackIndex):
  373. """Pack index that is based on a file.
  374. To do the loop it opens the file, and indexes first 256 4 byte groups
  375. with the first byte of the sha id. The value in the four byte group indexed
  376. is the end of the group that shares the same starting byte. Subtract one
  377. from the starting byte and index again to find the start of the group.
  378. The values are sorted by sha id within the group, so do the math to find
  379. the start and end offset and then bisect in to find if the value is
  380. present.
  381. """
  382. def __init__(self, filename, file=None, contents=None, size=None):
  383. """Create a pack index object.
  384. Provide it with the name of the index file to consider, and it will map
  385. it whenever required.
  386. """
  387. self._filename = filename
  388. # Take the size now, so it can be checked each time we map the file to
  389. # ensure that it hasn't changed.
  390. if file is None:
  391. self._file = GitFile(filename, 'rb')
  392. else:
  393. self._file = file
  394. if contents is None:
  395. self._contents, self._size = _load_file_contents(self._file, size)
  396. else:
  397. self._contents, self._size = (contents, size)
  398. @property
  399. def path(self):
  400. return self._filename
  401. def __eq__(self, other):
  402. # Quick optimization:
  403. if (isinstance(other, FilePackIndex) and
  404. self._fan_out_table != other._fan_out_table):
  405. return False
  406. return super(FilePackIndex, self).__eq__(other)
  407. def close(self):
  408. self._file.close()
  409. if getattr(self._contents, "close", None) is not None:
  410. self._contents.close()
  411. def __len__(self):
  412. """Return the number of entries in this pack index."""
  413. return self._fan_out_table[-1]
  414. def _unpack_entry(self, i):
  415. """Unpack the i-th entry in the index file.
  416. :return: Tuple with object name (SHA), offset in pack file and CRC32
  417. checksum (if known).
  418. """
  419. raise NotImplementedError(self._unpack_entry)
  420. def _unpack_name(self, i):
  421. """Unpack the i-th name from the index file."""
  422. raise NotImplementedError(self._unpack_name)
  423. def _unpack_offset(self, i):
  424. """Unpack the i-th object offset from the index file."""
  425. raise NotImplementedError(self._unpack_offset)
  426. def _unpack_crc32_checksum(self, i):
  427. """Unpack the crc32 checksum for the ith object from the index file.
  428. """
  429. raise NotImplementedError(self._unpack_crc32_checksum)
  430. def _itersha(self):
  431. for i in range(len(self)):
  432. yield self._unpack_name(i)
  433. def iterentries(self):
  434. """Iterate over the entries in this pack index.
  435. :return: iterator over tuples with object name, offset in packfile and
  436. crc32 checksum.
  437. """
  438. for i in range(len(self)):
  439. yield self._unpack_entry(i)
  440. def _read_fan_out_table(self, start_offset):
  441. ret = []
  442. for i in range(0x100):
  443. fanout_entry = self._contents[
  444. start_offset+i*4:start_offset+(i+1)*4]
  445. ret.append(struct.unpack('>L', fanout_entry)[0])
  446. return ret
  447. def check(self):
  448. """Check that the stored checksum matches the actual checksum."""
  449. actual = self.calculate_checksum()
  450. stored = self.get_stored_checksum()
  451. if actual != stored:
  452. raise ChecksumMismatch(stored, actual)
  453. def calculate_checksum(self):
  454. """Calculate the SHA1 checksum over this pack index.
  455. :return: This is a 20-byte binary digest
  456. """
  457. return sha1(self._contents[:-20]).digest()
  458. def get_pack_checksum(self):
  459. """Return the SHA1 checksum stored for the corresponding packfile.
  460. :return: 20-byte binary digest
  461. """
  462. return bytes(self._contents[-40:-20])
  463. def get_stored_checksum(self):
  464. """Return the SHA1 checksum stored for this index.
  465. :return: 20-byte binary digest
  466. """
  467. return bytes(self._contents[-20:])
  468. def _object_index(self, sha):
  469. """See object_index.
  470. :param sha: A *binary* SHA string. (20 characters long)_
  471. """
  472. assert len(sha) == 20
  473. idx = ord(sha[:1])
  474. if idx == 0:
  475. start = 0
  476. else:
  477. start = self._fan_out_table[idx-1]
  478. end = self._fan_out_table[idx]
  479. i = bisect_find_sha(start, end, sha, self._unpack_name)
  480. if i is None:
  481. raise KeyError(sha)
  482. return self._unpack_offset(i)
  483. class PackIndex1(FilePackIndex):
  484. """Version 1 Pack Index file."""
  485. def __init__(self, filename, file=None, contents=None, size=None):
  486. super(PackIndex1, self).__init__(filename, file, contents, size)
  487. self.version = 1
  488. self._fan_out_table = self._read_fan_out_table(0)
  489. def _unpack_entry(self, i):
  490. (offset, name) = unpack_from('>L20s', self._contents,
  491. (0x100 * 4) + (i * 24))
  492. return (name, offset, None)
  493. def _unpack_name(self, i):
  494. offset = (0x100 * 4) + (i * 24) + 4
  495. return self._contents[offset:offset+20]
  496. def _unpack_offset(self, i):
  497. offset = (0x100 * 4) + (i * 24)
  498. return unpack_from('>L', self._contents, offset)[0]
  499. def _unpack_crc32_checksum(self, i):
  500. # Not stored in v1 index files
  501. return None
  502. class PackIndex2(FilePackIndex):
  503. """Version 2 Pack Index file."""
  504. def __init__(self, filename, file=None, contents=None, size=None):
  505. super(PackIndex2, self).__init__(filename, file, contents, size)
  506. if self._contents[:4] != b'\377tOc':
  507. raise AssertionError('Not a v2 pack index file')
  508. (self.version, ) = unpack_from(b'>L', self._contents, 4)
  509. if self.version != 2:
  510. raise AssertionError('Version was %d' % self.version)
  511. self._fan_out_table = self._read_fan_out_table(8)
  512. self._name_table_offset = 8 + 0x100 * 4
  513. self._crc32_table_offset = self._name_table_offset + 20 * len(self)
  514. self._pack_offset_table_offset = (self._crc32_table_offset +
  515. 4 * len(self))
  516. self._pack_offset_largetable_offset = (
  517. self._pack_offset_table_offset + 4 * len(self))
  518. def _unpack_entry(self, i):
  519. return (self._unpack_name(i), self._unpack_offset(i),
  520. self._unpack_crc32_checksum(i))
  521. def _unpack_name(self, i):
  522. offset = self._name_table_offset + i * 20
  523. return self._contents[offset:offset+20]
  524. def _unpack_offset(self, i):
  525. offset = self._pack_offset_table_offset + i * 4
  526. offset = unpack_from('>L', self._contents, offset)[0]
  527. if offset & (2**31):
  528. offset = (
  529. self._pack_offset_largetable_offset +
  530. (offset & (2 ** 31 - 1)) * 8)
  531. offset = unpack_from('>Q', self._contents, offset)[0]
  532. return offset
  533. def _unpack_crc32_checksum(self, i):
  534. return unpack_from('>L', self._contents,
  535. self._crc32_table_offset + i * 4)[0]
  536. def read_pack_header(read):
  537. """Read the header of a pack file.
  538. :param read: Read function
  539. :return: Tuple of (pack version, number of objects). If no data is
  540. available to read, returns (None, None).
  541. """
  542. header = read(12)
  543. if not header:
  544. return None, None
  545. if header[:4] != b'PACK':
  546. raise AssertionError('Invalid pack header %r' % header)
  547. (version,) = unpack_from(b'>L', header, 4)
  548. if version not in (2, 3):
  549. raise AssertionError('Version was %d' % version)
  550. (num_objects,) = unpack_from(b'>L', header, 8)
  551. return (version, num_objects)
  552. def chunks_length(chunks):
  553. if isinstance(chunks, bytes):
  554. return len(chunks)
  555. else:
  556. return sum(imap(len, chunks))
  557. def unpack_object(read_all, read_some=None, compute_crc32=False,
  558. include_comp=False, zlib_bufsize=_ZLIB_BUFSIZE):
  559. """Unpack a Git object.
  560. :param read_all: Read function that blocks until the number of requested
  561. bytes are read.
  562. :param read_some: Read function that returns at least one byte, but may not
  563. return the number of bytes requested.
  564. :param compute_crc32: If True, compute the CRC32 of the compressed data. If
  565. False, the returned CRC32 will be None.
  566. :param include_comp: If True, include compressed data in the result.
  567. :param zlib_bufsize: An optional buffer size for zlib operations.
  568. :return: A tuple of (unpacked, unused), where unused is the unused data
  569. leftover from decompression, and unpacked in an UnpackedObject with
  570. the following attrs set:
  571. * obj_chunks (for non-delta types)
  572. * pack_type_num
  573. * delta_base (for delta types)
  574. * comp_chunks (if include_comp is True)
  575. * decomp_chunks
  576. * decomp_len
  577. * crc32 (if compute_crc32 is True)
  578. """
  579. if read_some is None:
  580. read_some = read_all
  581. if compute_crc32:
  582. crc32 = 0
  583. else:
  584. crc32 = None
  585. bytes, crc32 = take_msb_bytes(read_all, crc32=crc32)
  586. type_num = (bytes[0] >> 4) & 0x07
  587. size = bytes[0] & 0x0f
  588. for i, byte in enumerate(bytes[1:]):
  589. size += (byte & 0x7f) << ((i * 7) + 4)
  590. raw_base = len(bytes)
  591. if type_num == OFS_DELTA:
  592. bytes, crc32 = take_msb_bytes(read_all, crc32=crc32)
  593. raw_base += len(bytes)
  594. if bytes[-1] & 0x80:
  595. raise AssertionError
  596. delta_base_offset = bytes[0] & 0x7f
  597. for byte in bytes[1:]:
  598. delta_base_offset += 1
  599. delta_base_offset <<= 7
  600. delta_base_offset += (byte & 0x7f)
  601. delta_base = delta_base_offset
  602. elif type_num == REF_DELTA:
  603. delta_base = read_all(20)
  604. if compute_crc32:
  605. crc32 = binascii.crc32(delta_base, crc32)
  606. raw_base += 20
  607. else:
  608. delta_base = None
  609. unpacked = UnpackedObject(type_num, delta_base, size, crc32)
  610. unused = read_zlib_chunks(read_some, unpacked, buffer_size=zlib_bufsize,
  611. include_comp=include_comp)
  612. return unpacked, unused
  613. def _compute_object_size(value):
  614. """Compute the size of a unresolved object for use with LRUSizeCache."""
  615. (num, obj) = value
  616. if num in DELTA_TYPES:
  617. return chunks_length(obj[1])
  618. return chunks_length(obj)
  619. class PackStreamReader(object):
  620. """Class to read a pack stream.
  621. The pack is read from a ReceivableProtocol using read() or recv() as
  622. appropriate.
  623. """
  624. def __init__(self, read_all, read_some=None, zlib_bufsize=_ZLIB_BUFSIZE):
  625. self.read_all = read_all
  626. if read_some is None:
  627. self.read_some = read_all
  628. else:
  629. self.read_some = read_some
  630. self.sha = sha1()
  631. self._offset = 0
  632. self._rbuf = BytesIO()
  633. # trailer is a deque to avoid memory allocation on small reads
  634. self._trailer = deque()
  635. self._zlib_bufsize = zlib_bufsize
  636. def _read(self, read, size):
  637. """Read up to size bytes using the given callback.
  638. As a side effect, update the verifier's hash (excluding the last 20
  639. bytes read).
  640. :param read: The read callback to read from.
  641. :param size: The maximum number of bytes to read; the particular
  642. behavior is callback-specific.
  643. """
  644. data = read(size)
  645. # maintain a trailer of the last 20 bytes we've read
  646. n = len(data)
  647. self._offset += n
  648. tn = len(self._trailer)
  649. if n >= 20:
  650. to_pop = tn
  651. to_add = 20
  652. else:
  653. to_pop = max(n + tn - 20, 0)
  654. to_add = n
  655. self.sha.update(
  656. bytes(bytearray([self._trailer.popleft() for _ in range(to_pop)])))
  657. self._trailer.extend(data[-to_add:])
  658. # hash everything but the trailer
  659. self.sha.update(data[:-to_add])
  660. return data
  661. def _buf_len(self):
  662. buf = self._rbuf
  663. start = buf.tell()
  664. buf.seek(0, SEEK_END)
  665. end = buf.tell()
  666. buf.seek(start)
  667. return end - start
  668. @property
  669. def offset(self):
  670. return self._offset - self._buf_len()
  671. def read(self, size):
  672. """Read, blocking until size bytes are read."""
  673. buf_len = self._buf_len()
  674. if buf_len >= size:
  675. return self._rbuf.read(size)
  676. buf_data = self._rbuf.read()
  677. self._rbuf = BytesIO()
  678. return buf_data + self._read(self.read_all, size - buf_len)
  679. def recv(self, size):
  680. """Read up to size bytes, blocking until one byte is read."""
  681. buf_len = self._buf_len()
  682. if buf_len:
  683. data = self._rbuf.read(size)
  684. if size >= buf_len:
  685. self._rbuf = BytesIO()
  686. return data
  687. return self._read(self.read_some, size)
  688. def __len__(self):
  689. return self._num_objects
  690. def read_objects(self, compute_crc32=False):
  691. """Read the objects in this pack file.
  692. :param compute_crc32: If True, compute the CRC32 of the compressed
  693. data. If False, the returned CRC32 will be None.
  694. :return: Iterator over UnpackedObjects with the following members set:
  695. offset
  696. obj_type_num
  697. obj_chunks (for non-delta types)
  698. delta_base (for delta types)
  699. decomp_chunks
  700. decomp_len
  701. crc32 (if compute_crc32 is True)
  702. :raise ChecksumMismatch: if the checksum of the pack contents does not
  703. match the checksum in the pack trailer.
  704. :raise zlib.error: if an error occurred during zlib decompression.
  705. :raise IOError: if an error occurred writing to the output file.
  706. """
  707. pack_version, self._num_objects = read_pack_header(self.read)
  708. if pack_version is None:
  709. return
  710. for i in range(self._num_objects):
  711. offset = self.offset
  712. unpacked, unused = unpack_object(
  713. self.read, read_some=self.recv, compute_crc32=compute_crc32,
  714. zlib_bufsize=self._zlib_bufsize)
  715. unpacked.offset = offset
  716. # prepend any unused data to current read buffer
  717. buf = BytesIO()
  718. buf.write(unused)
  719. buf.write(self._rbuf.read())
  720. buf.seek(0)
  721. self._rbuf = buf
  722. yield unpacked
  723. if self._buf_len() < 20:
  724. # If the read buffer is full, then the last read() got the whole
  725. # trailer off the wire. If not, it means there is still some of the
  726. # trailer to read. We need to read() all 20 bytes; N come from the
  727. # read buffer and (20 - N) come from the wire.
  728. self.read(20)
  729. pack_sha = bytearray(self._trailer)
  730. if pack_sha != self.sha.digest():
  731. raise ChecksumMismatch(sha_to_hex(pack_sha), self.sha.hexdigest())
  732. class PackStreamCopier(PackStreamReader):
  733. """Class to verify a pack stream as it is being read.
  734. The pack is read from a ReceivableProtocol using read() or recv() as
  735. appropriate and written out to the given file-like object.
  736. """
  737. def __init__(self, read_all, read_some, outfile, delta_iter=None):
  738. """Initialize the copier.
  739. :param read_all: Read function that blocks until the number of
  740. requested bytes are read.
  741. :param read_some: Read function that returns at least one byte, but may
  742. not return the number of bytes requested.
  743. :param outfile: File-like object to write output through.
  744. :param delta_iter: Optional DeltaChainIterator to record deltas as we
  745. read them.
  746. """
  747. super(PackStreamCopier, self).__init__(read_all, read_some=read_some)
  748. self.outfile = outfile
  749. self._delta_iter = delta_iter
  750. def _read(self, read, size):
  751. """Read data from the read callback and write it to the file."""
  752. data = super(PackStreamCopier, self)._read(read, size)
  753. self.outfile.write(data)
  754. return data
  755. def verify(self):
  756. """Verify a pack stream and write it to the output file.
  757. See PackStreamReader.iterobjects for a list of exceptions this may
  758. throw.
  759. """
  760. if self._delta_iter:
  761. for unpacked in self.read_objects():
  762. self._delta_iter.record(unpacked)
  763. else:
  764. for _ in self.read_objects():
  765. pass
  766. def obj_sha(type, chunks):
  767. """Compute the SHA for a numeric type and object chunks."""
  768. sha = sha1()
  769. sha.update(object_header(type, chunks_length(chunks)))
  770. if isinstance(chunks, bytes):
  771. sha.update(chunks)
  772. else:
  773. for chunk in chunks:
  774. sha.update(chunk)
  775. return sha.digest()
  776. def compute_file_sha(f, start_ofs=0, end_ofs=0, buffer_size=1 << 16):
  777. """Hash a portion of a file into a new SHA.
  778. :param f: A file-like object to read from that supports seek().
  779. :param start_ofs: The offset in the file to start reading at.
  780. :param end_ofs: The offset in the file to end reading at, relative to the
  781. end of the file.
  782. :param buffer_size: A buffer size for reading.
  783. :return: A new SHA object updated with data read from the file.
  784. """
  785. sha = sha1()
  786. f.seek(0, SEEK_END)
  787. length = f.tell()
  788. if (end_ofs < 0 and length + end_ofs < start_ofs) or end_ofs > length:
  789. raise AssertionError(
  790. "Attempt to read beyond file length. "
  791. "start_ofs: %d, end_ofs: %d, file length: %d" % (
  792. start_ofs, end_ofs, length))
  793. todo = length + end_ofs - start_ofs
  794. f.seek(start_ofs)
  795. while todo:
  796. data = f.read(min(todo, buffer_size))
  797. sha.update(data)
  798. todo -= len(data)
  799. return sha
  800. class PackData(object):
  801. """The data contained in a packfile.
  802. Pack files can be accessed both sequentially for exploding a pack, and
  803. directly with the help of an index to retrieve a specific object.
  804. The objects within are either complete or a delta against another.
  805. The header is variable length. If the MSB of each byte is set then it
  806. indicates that the subsequent byte is still part of the header.
  807. For the first byte the next MS bits are the type, which tells you the type
  808. of object, and whether it is a delta. The LS byte is the lowest bits of the
  809. size. For each subsequent byte the LS 7 bits are the next MS bits of the
  810. size, i.e. the last byte of the header contains the MS bits of the size.
  811. For the complete objects the data is stored as zlib deflated data.
  812. The size in the header is the uncompressed object size, so to uncompress
  813. you need to just keep feeding data to zlib until you get an object back,
  814. or it errors on bad data. This is done here by just giving the complete
  815. buffer from the start of the deflated object on. This is bad, but until I
  816. get mmap sorted out it will have to do.
  817. Currently there are no integrity checks done. Also no attempt is made to
  818. try and detect the delta case, or a request for an object at the wrong
  819. position. It will all just throw a zlib or KeyError.
  820. """
  821. def __init__(self, filename, file=None, size=None):
  822. """Create a PackData object representing the pack in the given filename.
  823. The file must exist and stay readable until the object is disposed of.
  824. It must also stay the same size. It will be mapped whenever needed.
  825. Currently there is a restriction on the size of the pack as the python
  826. mmap implementation is flawed.
  827. """
  828. self._filename = filename
  829. self._size = size
  830. self._header_size = 12
  831. if file is None:
  832. self._file = GitFile(self._filename, 'rb')
  833. else:
  834. self._file = file
  835. (version, self._num_objects) = read_pack_header(self._file.read)
  836. self._offset_cache = LRUSizeCache(
  837. 1024*1024*20, compute_size=_compute_object_size)
  838. self.pack = None
  839. @property
  840. def filename(self):
  841. return os.path.basename(self._filename)
  842. @property
  843. def path(self):
  844. return self._filename
  845. @classmethod
  846. def from_file(cls, file, size):
  847. return cls(str(file), file=file, size=size)
  848. @classmethod
  849. def from_path(cls, path):
  850. return cls(filename=path)
  851. def close(self):
  852. self._file.close()
  853. def __enter__(self):
  854. return self
  855. def __exit__(self, exc_type, exc_val, exc_tb):
  856. self.close()
  857. def _get_size(self):
  858. if self._size is not None:
  859. return self._size
  860. self._size = os.path.getsize(self._filename)
  861. if self._size < self._header_size:
  862. errmsg = ('%s is too small for a packfile (%d < %d)' %
  863. (self._filename, self._size, self._header_size))
  864. raise AssertionError(errmsg)
  865. return self._size
  866. def __len__(self):
  867. """Returns the number of objects in this pack."""
  868. return self._num_objects
  869. def calculate_checksum(self):
  870. """Calculate the checksum for this pack.
  871. :return: 20-byte binary SHA1 digest
  872. """
  873. return compute_file_sha(self._file, end_ofs=-20).digest()
  874. def get_ref(self, sha):
  875. """Get the object for a ref SHA, only looking in this pack."""
  876. # TODO: cache these results
  877. if self.pack is None:
  878. raise KeyError(sha)
  879. try:
  880. offset = self.pack.index.object_index(sha)
  881. except KeyError:
  882. offset = None
  883. if offset:
  884. type, obj = self.get_object_at(offset)
  885. elif self.pack is not None and self.pack.resolve_ext_ref:
  886. type, obj = self.pack.resolve_ext_ref(sha)
  887. else:
  888. raise KeyError(sha)
  889. return offset, type, obj
  890. def resolve_object(self, offset, type, obj, get_ref=None):
  891. """Resolve an object, possibly resolving deltas when necessary.
  892. :return: Tuple with object type and contents.
  893. """
  894. # Walk down the delta chain, building a stack of deltas to reach
  895. # the requested object.
  896. base_offset = offset
  897. base_type = type
  898. base_obj = obj
  899. delta_stack = []
  900. while base_type in DELTA_TYPES:
  901. prev_offset = base_offset
  902. if get_ref is None:
  903. get_ref = self.get_ref
  904. if base_type == OFS_DELTA:
  905. (delta_offset, delta) = base_obj
  906. # TODO: clean up asserts and replace with nicer error messages
  907. base_offset = base_offset - delta_offset
  908. base_type, base_obj = self.get_object_at(base_offset)
  909. assert isinstance(base_type, int)
  910. elif base_type == REF_DELTA:
  911. (basename, delta) = base_obj
  912. assert isinstance(basename, bytes) and len(basename) == 20
  913. base_offset, base_type, base_obj = get_ref(basename)
  914. assert isinstance(base_type, int)
  915. delta_stack.append((prev_offset, base_type, delta))
  916. # Now grab the base object (mustn't be a delta) and apply the
  917. # deltas all the way up the stack.
  918. chunks = base_obj
  919. for prev_offset, delta_type, delta in reversed(delta_stack):
  920. chunks = apply_delta(chunks, delta)
  921. # TODO(dborowitz): This can result in poor performance if
  922. # large base objects are separated from deltas in the pack.
  923. # We should reorganize so that we apply deltas to all
  924. # objects in a chain one after the other to optimize cache
  925. # performance.
  926. if prev_offset is not None:
  927. self._offset_cache[prev_offset] = base_type, chunks
  928. return base_type, chunks
  929. def iterobjects(self, progress=None, compute_crc32=True):
  930. self._file.seek(self._header_size)
  931. for i in range(1, self._num_objects + 1):
  932. offset = self._file.tell()
  933. unpacked, unused = unpack_object(
  934. self._file.read, compute_crc32=compute_crc32)
  935. if progress is not None:
  936. progress(i, self._num_objects)
  937. yield (offset, unpacked.pack_type_num, unpacked._obj(),
  938. unpacked.crc32)
  939. # Back up over unused data.
  940. self._file.seek(-len(unused), SEEK_CUR)
  941. def _iter_unpacked(self):
  942. # TODO(dborowitz): Merge this with iterobjects, if we can change its
  943. # return type.
  944. self._file.seek(self._header_size)
  945. if self._num_objects is None:
  946. return
  947. for _ in range(self._num_objects):
  948. offset = self._file.tell()
  949. unpacked, unused = unpack_object(
  950. self._file.read, compute_crc32=False)
  951. unpacked.offset = offset
  952. yield unpacked
  953. # Back up over unused data.
  954. self._file.seek(-len(unused), SEEK_CUR)
  955. def iterentries(self, progress=None):
  956. """Yield entries summarizing the contents of this pack.
  957. :param progress: Progress function, called with current and total
  958. object count.
  959. :return: iterator of tuples with (sha, offset, crc32)
  960. """
  961. num_objects = self._num_objects
  962. resolve_ext_ref = (
  963. self.pack.resolve_ext_ref if self.pack is not None else None)
  964. indexer = PackIndexer.for_pack_data(
  965. self, resolve_ext_ref=resolve_ext_ref)
  966. for i, result in enumerate(indexer):
  967. if progress is not None:
  968. progress(i, num_objects)
  969. yield result
  970. def sorted_entries(self, progress=None):
  971. """Return entries in this pack, sorted by SHA.
  972. :param progress: Progress function, called with current and total
  973. object count
  974. :return: List of tuples with (sha, offset, crc32)
  975. """
  976. ret = sorted(self.iterentries(progress=progress))
  977. return ret
  978. def create_index_v1(self, filename, progress=None):
  979. """Create a version 1 file for this data file.
  980. :param filename: Index filename.
  981. :param progress: Progress report function
  982. :return: Checksum of index file
  983. """
  984. entries = self.sorted_entries(progress=progress)
  985. with GitFile(filename, 'wb') as f:
  986. return write_pack_index_v1(f, entries, self.calculate_checksum())
  987. def create_index_v2(self, filename, progress=None):
  988. """Create a version 2 index file for this data file.
  989. :param filename: Index filename.
  990. :param progress: Progress report function
  991. :return: Checksum of index file
  992. """
  993. entries = self.sorted_entries(progress=progress)
  994. with GitFile(filename, 'wb') as f:
  995. return write_pack_index_v2(f, entries, self.calculate_checksum())
  996. def create_index(self, filename, progress=None,
  997. version=2):
  998. """Create an index file for this data file.
  999. :param filename: Index filename.
  1000. :param progress: Progress report function
  1001. :return: Checksum of index file
  1002. """
  1003. if version == 1:
  1004. return self.create_index_v1(filename, progress)
  1005. elif version == 2:
  1006. return self.create_index_v2(filename, progress)
  1007. else:
  1008. raise ValueError('unknown index format %d' % version)
  1009. def get_stored_checksum(self):
  1010. """Return the expected checksum stored in this pack."""
  1011. self._file.seek(-20, SEEK_END)
  1012. return self._file.read(20)
  1013. def check(self):
  1014. """Check the consistency of this pack."""
  1015. actual = self.calculate_checksum()
  1016. stored = self.get_stored_checksum()
  1017. if actual != stored:
  1018. raise ChecksumMismatch(stored, actual)
  1019. def get_compressed_data_at(self, offset):
  1020. """Given offset in the packfile return compressed data that is there.
  1021. Using the associated index the location of an object can be looked up,
  1022. and then the packfile can be asked directly for that object using this
  1023. function.
  1024. """
  1025. assert offset >= self._header_size
  1026. self._file.seek(offset)
  1027. unpacked, _ = unpack_object(self._file.read, include_comp=True)
  1028. return (unpacked.pack_type_num, unpacked.delta_base,
  1029. unpacked.comp_chunks)
  1030. def get_object_at(self, offset):
  1031. """Given an offset in to the packfile return the object that is there.
  1032. Using the associated index the location of an object can be looked up,
  1033. and then the packfile can be asked directly for that object using this
  1034. function.
  1035. """
  1036. try:
  1037. return self._offset_cache[offset]
  1038. except KeyError:
  1039. pass
  1040. assert offset >= self._header_size
  1041. self._file.seek(offset)
  1042. unpacked, _ = unpack_object(self._file.read)
  1043. return (unpacked.pack_type_num, unpacked._obj())
  1044. class DeltaChainIterator(object):
  1045. """Abstract iterator over pack data based on delta chains.
  1046. Each object in the pack is guaranteed to be inflated exactly once,
  1047. regardless of how many objects reference it as a delta base. As a result,
  1048. memory usage is proportional to the length of the longest delta chain.
  1049. Subclasses can override _result to define the result type of the iterator.
  1050. By default, results are UnpackedObjects with the following members set:
  1051. * offset
  1052. * obj_type_num
  1053. * obj_chunks
  1054. * pack_type_num
  1055. * delta_base (for delta types)
  1056. * comp_chunks (if _include_comp is True)
  1057. * decomp_chunks
  1058. * decomp_len
  1059. * crc32 (if _compute_crc32 is True)
  1060. """
  1061. _compute_crc32 = False
  1062. _include_comp = False
  1063. def __init__(self, file_obj, resolve_ext_ref=None):
  1064. self._file = file_obj
  1065. self._resolve_ext_ref = resolve_ext_ref
  1066. self._pending_ofs = defaultdict(list)
  1067. self._pending_ref = defaultdict(list)
  1068. self._full_ofs = []
  1069. self._shas = {}
  1070. self._ext_refs = []
  1071. @classmethod
  1072. def for_pack_data(cls, pack_data, resolve_ext_ref=None):
  1073. walker = cls(None, resolve_ext_ref=resolve_ext_ref)
  1074. walker.set_pack_data(pack_data)
  1075. for unpacked in pack_data._iter_unpacked():
  1076. walker.record(unpacked)
  1077. return walker
  1078. def record(self, unpacked):
  1079. type_num = unpacked.pack_type_num
  1080. offset = unpacked.offset
  1081. if type_num == OFS_DELTA:
  1082. base_offset = offset - unpacked.delta_base
  1083. self._pending_ofs[base_offset].append(offset)
  1084. elif type_num == REF_DELTA:
  1085. self._pending_ref[unpacked.delta_base].append(offset)
  1086. else:
  1087. self._full_ofs.append((offset, type_num))
  1088. def set_pack_data(self, pack_data):
  1089. self._file = pack_data._file
  1090. def _walk_all_chains(self):
  1091. for offset, type_num in self._full_ofs:
  1092. for result in self._follow_chain(offset, type_num, None):
  1093. yield result
  1094. for result in self._walk_ref_chains():
  1095. yield result
  1096. assert not self._pending_ofs
  1097. def _ensure_no_pending(self):
  1098. if self._pending_ref:
  1099. raise KeyError([sha_to_hex(s) for s in self._pending_ref])
  1100. def _walk_ref_chains(self):
  1101. if not self._resolve_ext_ref:
  1102. self._ensure_no_pending()
  1103. return
  1104. for base_sha, pending in sorted(self._pending_ref.items()):
  1105. if base_sha not in self._pending_ref:
  1106. continue
  1107. try:
  1108. type_num, chunks = self._resolve_ext_ref(base_sha)
  1109. except KeyError:
  1110. # Not an external ref, but may depend on one. Either it will
  1111. # get popped via a _follow_chain call, or we will raise an
  1112. # error below.
  1113. continue
  1114. self._ext_refs.append(base_sha)
  1115. self._pending_ref.pop(base_sha)
  1116. for new_offset in pending:
  1117. for result in self._follow_chain(new_offset, type_num, chunks):
  1118. yield result
  1119. self._ensure_no_pending()
  1120. def _result(self, unpacked):
  1121. return unpacked
  1122. def _resolve_object(self, offset, obj_type_num, base_chunks):
  1123. self._file.seek(offset)
  1124. unpacked, _ = unpack_object(
  1125. self._file.read, include_comp=self._include_comp,
  1126. compute_crc32=self._compute_crc32)
  1127. unpacked.offset = offset
  1128. if base_chunks is None:
  1129. assert unpacked.pack_type_num == obj_type_num
  1130. else:
  1131. assert unpacked.pack_type_num in DELTA_TYPES
  1132. unpacked.obj_type_num = obj_type_num
  1133. unpacked.obj_chunks = apply_delta(base_chunks,
  1134. unpacked.decomp_chunks)
  1135. return unpacked
  1136. def _follow_chain(self, offset, obj_type_num, base_chunks):
  1137. # Unlike PackData.get_object_at, there is no need to cache offsets as
  1138. # this approach by design inflates each object exactly once.
  1139. todo = [(offset, obj_type_num, base_chunks)]
  1140. for offset, obj_type_num, base_chunks in todo:
  1141. unpacked = self._resolve_object(offset, obj_type_num, base_chunks)
  1142. yield self._result(unpacked)
  1143. unblocked = chain(self._pending_ofs.pop(unpacked.offset, []),
  1144. self._pending_ref.pop(unpacked.sha(), []))
  1145. todo.extend(
  1146. (new_offset, unpacked.obj_type_num, unpacked.obj_chunks)
  1147. for new_offset in unblocked)
  1148. def __iter__(self):
  1149. return self._walk_all_chains()
  1150. def ext_refs(self):
  1151. return self._ext_refs
  1152. class PackIndexer(DeltaChainIterator):
  1153. """Delta chain iterator that yields index entries."""
  1154. _compute_crc32 = True
  1155. def _result(self, unpacked):
  1156. return unpacked.sha(), unpacked.offset, unpacked.crc32
  1157. class PackInflater(DeltaChainIterator):
  1158. """Delta chain iterator that yields ShaFile objects."""
  1159. def _result(self, unpacked):
  1160. return unpacked.sha_file()
  1161. class SHA1Reader(object):
  1162. """Wrapper for file-like object that remembers the SHA1 of its data."""
  1163. def __init__(self, f):
  1164. self.f = f
  1165. self.sha1 = sha1(b'')
  1166. def read(self, num=None):
  1167. data = self.f.read(num)
  1168. self.sha1.update(data)
  1169. return data
  1170. def check_sha(self):
  1171. stored = self.f.read(20)
  1172. if stored != self.sha1.digest():
  1173. raise ChecksumMismatch(self.sha1.hexdigest(), sha_to_hex(stored))
  1174. def close(self):
  1175. return self.f.close()
  1176. def tell(self):
  1177. return self.f.tell()
  1178. class SHA1Writer(object):
  1179. """Wrapper for file-like object that remembers the SHA1 of its data."""
  1180. def __init__(self, f):
  1181. self.f = f
  1182. self.length = 0
  1183. self.sha1 = sha1(b'')
  1184. def write(self, data):
  1185. self.sha1.update(data)
  1186. self.f.write(data)
  1187. self.length += len(data)
  1188. def write_sha(self):
  1189. sha = self.sha1.digest()
  1190. assert len(sha) == 20
  1191. self.f.write(sha)
  1192. self.length += len(sha)
  1193. return sha
  1194. def close(self):
  1195. sha = self.write_sha()
  1196. self.f.close()
  1197. return sha
  1198. def offset(self):
  1199. return self.length
  1200. def tell(self):
  1201. return self.f.tell()
  1202. def pack_object_header(type_num, delta_base, size):
  1203. """Create a pack object header for the given object info.
  1204. :param type_num: Numeric type of the object.
  1205. :param delta_base: Delta base offset or ref, or None for whole objects.
  1206. :param size: Uncompressed object size.
  1207. :return: A header for a packed object.
  1208. """
  1209. header = []
  1210. c = (type_num << 4) | (size & 15)
  1211. size >>= 4
  1212. while size:
  1213. header.append(c | 0x80)
  1214. c = size & 0x7f
  1215. size >>= 7
  1216. header.append(c)
  1217. if type_num == OFS_DELTA:
  1218. ret = [delta_base & 0x7f]
  1219. delta_base >>= 7
  1220. while delta_base:
  1221. delta_base -= 1
  1222. ret.insert(0, 0x80 | (delta_base & 0x7f))
  1223. delta_base >>= 7
  1224. header.extend(ret)
  1225. elif type_num == REF_DELTA:
  1226. assert len(delta_base) == 20
  1227. header += delta_base
  1228. return bytearray(header)
  1229. def write_pack_object(f, type, object, sha=None):
  1230. """Write pack object to a file.
  1231. :param f: File to write to
  1232. :param type: Numeric type of the object
  1233. :param object: Object to write
  1234. :return: Tuple with offset at which the object was written, and crc32
  1235. """
  1236. if type in DELTA_TYPES:
  1237. delta_base, object = object
  1238. else:
  1239. delta_base = None
  1240. header = bytes(pack_object_header(type, delta_base, len(object)))
  1241. comp_data = zlib.compress(object)
  1242. crc32 = 0
  1243. for data in (header, comp_data):
  1244. f.write(data)
  1245. if sha is not None:
  1246. sha.update(data)
  1247. crc32 = binascii.crc32(data, crc32)
  1248. return crc32 & 0xffffffff
  1249. def write_pack(filename, objects, deltify=None, delta_window_size=None):
  1250. """Write a new pack data file.
  1251. :param filename: Path to the new pack file (without .pack extension)
  1252. :param objects: Iterable of (object, path) tuples to write.
  1253. Should provide __len__
  1254. :param window_size: Delta window size
  1255. :param deltify: Whether to deltify pack objects
  1256. :return: Tuple with checksum of pack file and index file
  1257. """
  1258. with GitFile(filename + '.pack', 'wb') as f:
  1259. entries, data_sum = write_pack_objects(
  1260. f, objects, delta_window_size=delta_window_size, deltify=deltify)
  1261. entries = sorted([(k, v[0], v[1]) for (k, v) in entries.items()])
  1262. with GitFile(filename + '.idx', 'wb') as f:
  1263. return data_sum, write_pack_index_v2(f, entries, data_sum)
  1264. def write_pack_header(f, num_objects):
  1265. """Write a pack header for the given number of objects."""
  1266. f.write(b'PACK') # Pack header
  1267. f.write(struct.pack(b'>L', 2)) # Pack version
  1268. f.write(struct.pack(b'>L', num_objects)) # Number of objects in pack
  1269. def deltify_pack_objects(objects, window_size=None):
  1270. """Generate deltas for pack objects.
  1271. :param objects: An iterable of (object, path) tuples to deltify.
  1272. :param window_size: Window size; None for default
  1273. :return: Iterator over type_num, object id, delta_base, content
  1274. delta_base is None for full text entries
  1275. """
  1276. # TODO(jelmer): Use threads
  1277. if window_size is None:
  1278. window_size = DEFAULT_PACK_DELTA_WINDOW_SIZE
  1279. # Build a list of objects ordered by the magic Linus heuristic
  1280. # This helps us find good objects to diff against us
  1281. magic = []
  1282. for obj, path in objects:
  1283. magic.append((obj.type_num, path, -obj.raw_length(), obj))
  1284. magic.sort()
  1285. possible_bases = deque()
  1286. for type_num, path, neg_length, o in magic:
  1287. raw = o.as_raw_string()
  1288. winner = raw
  1289. winner_base = None
  1290. for base in possible_bases:
  1291. if base.type_num != type_num:
  1292. continue
  1293. delta = create_delta(base.as_raw_string(), raw)
  1294. if len(delta) < len(winner):
  1295. winner_base = base.sha().digest()
  1296. winner = delta
  1297. yield type_num, o.sha().digest(), winner_base, winner
  1298. possible_bases.appendleft(o)
  1299. while len(possible_bases) > window_size:
  1300. possible_bases.pop()
  1301. def pack_objects_to_data(objects):
  1302. """Create pack data from objects
  1303. :param objects: Pack objects
  1304. :return: Tuples with (type_num, hexdigest, delta base, object chunks)
  1305. """
  1306. count = len(objects)
  1307. return (count,
  1308. ((o.type_num, o.sha().digest(), None, o.as_raw_string())
  1309. for (o, path) in objects))
  1310. def write_pack_objects(f, objects, delta_window_size=None, deltify=None):
  1311. """Write a new pack data file.
  1312. :param f: File to write to
  1313. :param objects: Iterable of (object, path) tuples to write.
  1314. Should provide __len__
  1315. :param window_size: Sliding window size for searching for deltas;
  1316. Set to None for default window size.
  1317. :param deltify: Whether to deltify objects
  1318. :return: Dict mapping id -> (offset, crc32 checksum), pack checksum
  1319. """
  1320. if deltify is None:
  1321. # PERFORMANCE/TODO(jelmer): This should be enabled but is *much* too
  1322. # slow at the moment.
  1323. deltify = False
  1324. if deltify:
  1325. pack_contents = deltify_pack_objects(objects, delta_window_size)
  1326. pack_contents_count = len(objects)
  1327. else:
  1328. pack_contents_count, pack_contents = pack_objects_to_data(objects)
  1329. return write_pack_data(f, pack_contents_count, pack_contents)
  1330. def write_pack_data(f, num_records, records, progress=None):
  1331. """Write a new pack data file.
  1332. :param f: File to write to
  1333. :param num_records: Number of records
  1334. :param records: Iterator over type_num, object_id, delta_base, raw
  1335. :param progress: Function to report progress to
  1336. :return: Dict mapping id -> (offset, crc32 checksum), pack checksum
  1337. """
  1338. # Write the pack
  1339. entries = {}
  1340. f = SHA1Writer(f)
  1341. write_pack_header(f, num_records)
  1342. for i, (type_num, object_id, delta_base, raw) in enumerate(records):
  1343. if progress is not None:
  1344. progress((
  1345. 'writing pack data: %d/%d\r' %
  1346. (i, num_records)).encode('ascii'))
  1347. offset = f.offset()
  1348. if delta_base is not None:
  1349. try:
  1350. base_offset, base_crc32 = entries[delta_base]
  1351. except KeyError:
  1352. type_num = REF_DELTA
  1353. raw = (delta_base, raw)
  1354. else:
  1355. type_num = OFS_DELTA
  1356. raw = (offset - base_offset, raw)
  1357. crc32 = write_pack_object(f, type_num, raw)
  1358. entries[object_id] = (offset, crc32)
  1359. return entries, f.write_sha()
  1360. def write_pack_index_v1(f, entries, pack_checksum):
  1361. """Write a new pack index file.
  1362. :param f: A file-like object to write to
  1363. :param entries: List of tuples with object name (sha), offset_in_pack,
  1364. and crc32_checksum.
  1365. :param pack_checksum: Checksum of the pack file.
  1366. :return: The SHA of the written index file
  1367. """
  1368. f = SHA1Writer(f)
  1369. fan_out_table = defaultdict(lambda: 0)
  1370. for (name, offset, entry_checksum) in entries:
  1371. fan_out_table[ord(name[:1])] += 1
  1372. # Fan-out table
  1373. for i in range(0x100):
  1374. f.write(struct.pack('>L', fan_out_table[i]))
  1375. fan_out_table[i+1] += fan_out_table[i]
  1376. for (name, offset, entry_checksum) in entries:
  1377. if not (offset <= 0xffffffff):
  1378. raise TypeError("pack format 1 only supports offsets < 2Gb")
  1379. f.write(struct.pack('>L20s', offset, name))
  1380. assert len(pack_checksum) == 20
  1381. f.write(pack_checksum)
  1382. return f.write_sha()
  1383. def _delta_encode_size(size):
  1384. ret = bytearray()
  1385. c = size & 0x7f
  1386. size >>= 7
  1387. while size:
  1388. ret.append(c | 0x80)
  1389. c = size & 0x7f
  1390. size >>= 7
  1391. ret.append(c)
  1392. return ret
  1393. # The length of delta compression copy operations in version 2 packs is limited
  1394. # to 64K. To copy more, we use several copy operations. Version 3 packs allow
  1395. # 24-bit lengths in copy operations, but we always make version 2 packs.
  1396. _MAX_COPY_LEN = 0xffff
  1397. def _encode_copy_operation(start, length):
  1398. scratch = []
  1399. op = 0x80
  1400. for i in range(4):
  1401. if start & 0xff << i*8:
  1402. scratch.append((start >> i*8) & 0xff)
  1403. op |= 1 << i
  1404. for i in range(2):
  1405. if length & 0xff << i*8:
  1406. scratch.append((length >> i*8) & 0xff)
  1407. op |= 1 << (4+i)
  1408. return bytearray([op] + scratch)
  1409. def create_delta(base_buf, target_buf):
  1410. """Use python difflib to work out how to transform base_buf to target_buf.
  1411. :param base_buf: Base buffer
  1412. :param target_buf: Target buffer
  1413. """
  1414. assert isinstance(base_buf, bytes)
  1415. assert isinstance(target_buf, bytes)
  1416. out_buf = bytearray()
  1417. # write delta header
  1418. out_buf += _delta_encode_size(len(base_buf))
  1419. out_buf += _delta_encode_size(len(target_buf))
  1420. # write out delta opcodes
  1421. seq = difflib.SequenceMatcher(a=base_buf, b=target_buf)
  1422. for opcode, i1, i2, j1, j2 in seq.get_opcodes():
  1423. # Git patch opcodes don't care about deletes!
  1424. # if opcode == 'replace' or opcode == 'delete':
  1425. # pass
  1426. if opcode == 'equal':
  1427. # If they are equal, unpacker will use data from base_buf
  1428. # Write out an opcode that says what range to use
  1429. copy_start = i1
  1430. copy_len = i2 - i1
  1431. while copy_len > 0:
  1432. to_copy = min(copy_len, _MAX_COPY_LEN)
  1433. out_buf += _encode_copy_operation(copy_start, to_copy)
  1434. copy_start += to_copy
  1435. copy_len -= to_copy
  1436. if opcode == 'replace' or opcode == 'insert':
  1437. # If we are replacing a range or adding one, then we just
  1438. # output it to the stream (prefixed by its size)
  1439. s = j2 - j1
  1440. o = j1
  1441. while s > 127:
  1442. out_buf.append(127)
  1443. out_buf += bytearray(target_buf[o:o+127])
  1444. s -= 127
  1445. o += 127
  1446. out_buf.append(s)
  1447. out_buf += bytearray(target_buf[o:o+s])
  1448. return bytes(out_buf)
  1449. def apply_delta(src_buf, delta):
  1450. """Based on the similar function in git's patch-delta.c.
  1451. :param src_buf: Source buffer
  1452. :param delta: Delta instructions
  1453. """
  1454. if not isinstance(src_buf, bytes):
  1455. src_buf = b''.join(src_buf)
  1456. if not isinstance(delta, bytes):
  1457. delta = b''.join(delta)
  1458. out = []
  1459. index = 0
  1460. delta_length = len(delta)
  1461. def get_delta_header_size(delta, index):
  1462. size = 0
  1463. i = 0
  1464. while delta:
  1465. cmd = ord(delta[index:index+1])
  1466. index += 1
  1467. size |= (cmd & ~0x80) << i
  1468. i += 7
  1469. if not cmd & 0x80:
  1470. break
  1471. return size, index
  1472. src_size, index = get_delta_header_size(delta, index)
  1473. dest_size, index = get_delta_header_size(delta, index)
  1474. assert src_size == len(src_buf), '%d vs %d' % (src_size, len(src_buf))
  1475. while index < delta_length:
  1476. cmd = ord(delta[index:index+1])
  1477. index += 1
  1478. if cmd & 0x80:
  1479. cp_off = 0
  1480. for i in range(4):
  1481. if cmd & (1 << i):
  1482. x = ord(delta[index:index+1])
  1483. index += 1
  1484. cp_off |= x << (i * 8)
  1485. cp_size = 0
  1486. # Version 3 packs can contain copy sizes larger than 64K.
  1487. for i in range(3):
  1488. if cmd & (1 << (4+i)):
  1489. x = ord(delta[index:index+1])
  1490. index += 1
  1491. cp_size |= x << (i * 8)
  1492. if cp_size == 0:
  1493. cp_size = 0x10000
  1494. if (cp_off + cp_size < cp_size or
  1495. cp_off + cp_size > src_size or
  1496. cp_size > dest_size):
  1497. break
  1498. out.append(src_buf[cp_off:cp_off+cp_size])
  1499. elif cmd != 0:
  1500. out.append(delta[index:index+cmd])
  1501. index += cmd
  1502. else:
  1503. raise ApplyDeltaError('Invalid opcode 0')
  1504. if index != delta_length:
  1505. raise ApplyDeltaError('delta not empty: %r' % delta[index:])
  1506. if dest_size != chunks_length(out):
  1507. raise ApplyDeltaError('dest size incorrect')
  1508. return out
  1509. def write_pack_index_v2(f, entries, pack_checksum):
  1510. """Write a new pack index file.
  1511. :param f: File-like object to write to
  1512. :param entries: List of tuples with object name (sha), offset_in_pack, and
  1513. crc32_checksum.
  1514. :param pack_checksum: Checksum of the pack file.
  1515. :return: The SHA of the index file written
  1516. """
  1517. f = SHA1Writer(f)
  1518. f.write(b'\377tOc') # Magic!
  1519. f.write(struct.pack('>L', 2))
  1520. fan_out_table = defaultdict(lambda: 0)
  1521. for (name, offset, entry_checksum) in entries:
  1522. fan_out_table[ord(name[:1])] += 1
  1523. # Fan-out table
  1524. largetable = []
  1525. for i in range(0x100):
  1526. f.write(struct.pack(b'>L', fan_out_table[i]))
  1527. fan_out_table[i+1] += fan_out_table[i]
  1528. for (name, offset, entry_checksum) in entries:
  1529. f.write(name)
  1530. for (name, offset, entry_checksum) in entries:
  1531. f.write(struct.pack(b'>L', entry_checksum))
  1532. for (name, offset, entry_checksum) in entries:
  1533. if offset < 2**31:
  1534. f.write(struct.pack(b'>L', offset))
  1535. else:
  1536. f.write(struct.pack(b'>L', 2**31 + len(largetable)))
  1537. largetable.append(offset)
  1538. for offset in largetable:
  1539. f.write(struct.pack(b'>Q', offset))
  1540. assert len(pack_checksum) == 20
  1541. f.write(pack_checksum)
  1542. return f.write_sha()
  1543. write_pack_index = write_pack_index_v2
  1544. class Pack(object):
  1545. """A Git pack object."""
  1546. def __init__(self, basename, resolve_ext_ref=None):
  1547. self._basename = basename
  1548. self._data = None
  1549. self._idx = None
  1550. self._idx_path = self._basename + '.idx'
  1551. self._data_path = self._basename + '.pack'
  1552. self._data_load = lambda: PackData(self._data_path)
  1553. self._idx_load = lambda: load_pack_index(self._idx_path)
  1554. self.resolve_ext_ref = resolve_ext_ref
  1555. @classmethod
  1556. def from_lazy_objects(self, data_fn, idx_fn):
  1557. """Create a new pack object from callables to load pack data and
  1558. index objects."""
  1559. ret = Pack('')
  1560. ret._data_load = data_fn
  1561. ret._idx_load = idx_fn
  1562. return ret
  1563. @classmethod
  1564. def from_objects(self, data, idx):
  1565. """Create a new pack object from pack data and index objects."""
  1566. ret = Pack('')
  1567. ret._data_load = lambda: data
  1568. ret._idx_load = lambda: idx
  1569. return ret
  1570. def name(self):
  1571. """The SHA over the SHAs of the objects in this pack."""
  1572. return self.index.objects_sha1()
  1573. @property
  1574. def data(self):
  1575. """The pack data object being used."""
  1576. if self._data is None:
  1577. self._data = self._data_load()
  1578. self._data.pack = self
  1579. self.check_length_and_checksum()
  1580. return self._data
  1581. @property
  1582. def index(self):
  1583. """The index being used.
  1584. :note: This may be an in-memory index
  1585. """
  1586. if self._idx is None:
  1587. self._idx = self._idx_load()
  1588. return self._idx
  1589. def close(self):
  1590. if self._data is not None:
  1591. self._data.close()
  1592. if self._idx is not None:
  1593. self._idx.close()
  1594. def __enter__(self):
  1595. return self
  1596. def __exit__(self, exc_type, exc_val, exc_tb):
  1597. self.close()
  1598. def __eq__(self, other):
  1599. return isinstance(self, type(other)) and self.index == other.index
  1600. def __len__(self):
  1601. """Number of entries in this pack."""
  1602. return len(self.index)
  1603. def __repr__(self):
  1604. return '%s(%r)' % (self.__class__.__name__, self._basename)
  1605. def __iter__(self):
  1606. """Iterate over all the sha1s of the objects in this pack."""
  1607. return iter(self.index)
  1608. def check_length_and_checksum(self):
  1609. """Sanity check the length and checksum of the pack index and data."""
  1610. assert len(self.index) == len(self.data)
  1611. idx_stored_checksum = self.index.get_pack_checksum()
  1612. data_stored_checksum = self.data.get_stored_checksum()
  1613. if idx_stored_checksum != data_stored_checksum:
  1614. raise ChecksumMismatch(sha_to_hex(idx_stored_checksum),
  1615. sha_to_hex(data_stored_checksum))
  1616. def check(self):
  1617. """Check the integrity of this pack.
  1618. :raise ChecksumMismatch: if a checksum for the index or data is wrong
  1619. """
  1620. self.index.check()
  1621. self.data.check()
  1622. for obj in self.iterobjects():
  1623. obj.check()
  1624. # TODO: object connectivity checks
  1625. def get_stored_checksum(self):
  1626. return self.data.get_stored_checksum()
  1627. def __contains__(self, sha1):
  1628. """Check whether this pack contains a particular SHA1."""
  1629. try:
  1630. self.index.object_index(sha1)
  1631. return True
  1632. except KeyError:
  1633. return False
  1634. def get_raw_unresolved(self, sha1):
  1635. """Get raw unresolved data for a SHA.
  1636. :param sha1: SHA to return data for
  1637. :return: Tuple with pack object type, delta base (if applicable),
  1638. list of data chunks
  1639. """
  1640. offset = self.index.object_index(sha1)
  1641. (obj_type, delta_base, chunks) = self.data.get_compressed_data_at(
  1642. offset)
  1643. if obj_type == OFS_DELTA:
  1644. delta_base = sha_to_hex(
  1645. self.index.object_sha1(offset - delta_base))
  1646. obj_type = REF_DELTA
  1647. return (obj_type, delta_base, chunks)
  1648. def get_raw(self, sha1):
  1649. offset = self.index.object_index(sha1)
  1650. obj_type, obj = self.data.get_object_at(offset)
  1651. type_num, chunks = self.data.resolve_object(offset, obj_type, obj)
  1652. return type_num, b''.join(chunks)
  1653. def __getitem__(self, sha1):
  1654. """Retrieve the specified SHA1."""
  1655. type, uncomp = self.get_raw(sha1)
  1656. return ShaFile.from_raw_string(type, uncomp, sha=sha1)
  1657. def iterobjects(self):
  1658. """Iterate over the objects in this pack."""
  1659. return iter(PackInflater.for_pack_data(
  1660. self.data, resolve_ext_ref=self.resolve_ext_ref))
  1661. def pack_tuples(self):
  1662. """Provide an iterable for use with write_pack_objects.
  1663. :return: Object that can iterate over (object, path) tuples
  1664. and provides __len__
  1665. """
  1666. class PackTupleIterable(object):
  1667. def __init__(self, pack):
  1668. self.pack = pack
  1669. def __len__(self):
  1670. return len(self.pack)
  1671. def __iter__(self):
  1672. return ((o, None) for o in self.pack.iterobjects())
  1673. return PackTupleIterable(self)
  1674. def keep(self, msg=None):
  1675. """Add a .keep file for the pack, preventing git from garbage collecting it.
  1676. :param msg: A message written inside the .keep file; can be used later
  1677. to determine whether or not a .keep file is obsolete.
  1678. :return: The path of the .keep file, as a string.
  1679. """
  1680. keepfile_name = '%s.keep' % self._basename
  1681. with GitFile(keepfile_name, 'wb') as keepfile:
  1682. if msg:
  1683. keepfile.write(msg)
  1684. keepfile.write(b'\n')
  1685. return keepfile_name
  1686. try:
  1687. from dulwich._pack import apply_delta, bisect_find_sha # noqa: F811
  1688. except ImportError:
  1689. pass