pack.py 89 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787
  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. import binascii
  31. from collections import defaultdict, deque
  32. from contextlib import suppress
  33. from io import BytesIO, UnsupportedOperation
  34. try:
  35. from cdifflib import CSequenceMatcher as SequenceMatcher
  36. except ModuleNotFoundError:
  37. from difflib import SequenceMatcher
  38. import os
  39. import struct
  40. import sys
  41. from itertools import chain
  42. from typing import (
  43. BinaryIO,
  44. Callable,
  45. Deque,
  46. Dict,
  47. Generic,
  48. Iterable,
  49. Iterator,
  50. List,
  51. Optional,
  52. Sequence,
  53. Set,
  54. Tuple,
  55. TypeVar,
  56. Union,
  57. )
  58. try:
  59. from typing import Protocol
  60. except ImportError: # python << 3.8
  61. from typing_extensions import Protocol # type: ignore
  62. import warnings
  63. import zlib
  64. from hashlib import sha1
  65. from os import SEEK_CUR, SEEK_END
  66. from struct import unpack_from
  67. try:
  68. import mmap
  69. except ImportError:
  70. has_mmap = False
  71. else:
  72. has_mmap = True
  73. # For some reason the above try, except fails to set has_mmap = False for plan9
  74. if sys.platform == "Plan9":
  75. has_mmap = False
  76. from .errors import ApplyDeltaError, ChecksumMismatch
  77. from .file import GitFile
  78. from .lru_cache import LRUSizeCache
  79. from .objects import ObjectID, ShaFile, hex_to_sha, object_header, sha_to_hex
  80. OFS_DELTA = 6
  81. REF_DELTA = 7
  82. DELTA_TYPES = (OFS_DELTA, REF_DELTA)
  83. DEFAULT_PACK_DELTA_WINDOW_SIZE = 10
  84. # Keep pack files under 16Mb in memory, otherwise write them out to disk
  85. PACK_SPOOL_FILE_MAX_SIZE = 16 * 1024 * 1024
  86. OldUnpackedObject = Union[Tuple[Union[bytes, int], List[bytes]], List[bytes]]
  87. ResolveExtRefFn = Callable[[bytes], Tuple[int, OldUnpackedObject]]
  88. ProgressFn = Callable[[int, str], None]
  89. PackHint = Tuple[int, Optional[bytes]]
  90. class UnresolvedDeltas(Exception):
  91. """Delta objects could not be resolved."""
  92. def __init__(self, shas):
  93. self.shas = shas
  94. class ObjectContainer(Protocol):
  95. def add_object(self, obj: ShaFile) -> None:
  96. """Add a single object to this object store."""
  97. def add_objects(
  98. self,
  99. objects: Sequence[Tuple[ShaFile, Optional[str]]],
  100. progress: Optional[Callable[[str], None]] = None,
  101. ) -> None:
  102. """Add a set of objects to this object store.
  103. Args:
  104. objects: Iterable over a list of (object, path) tuples
  105. """
  106. def __contains__(self, sha1: bytes) -> bool:
  107. """Check if a hex sha is present."""
  108. def __getitem__(self, sha1: bytes) -> ShaFile:
  109. """Retrieve an object."""
  110. class PackedObjectContainer(ObjectContainer):
  111. def get_unpacked_object(
  112. self, sha1: bytes, *, include_comp: bool = False
  113. ) -> "UnpackedObject":
  114. """Get a raw unresolved object."""
  115. raise NotImplementedError(self.get_unpacked_object)
  116. def iterobjects_subset(
  117. self, shas: Iterable[bytes], *, allow_missing: bool = False
  118. ) -> Iterator[ShaFile]:
  119. raise NotImplementedError(self.iterobjects_subset)
  120. def iter_unpacked_subset(
  121. self,
  122. shas: Set[bytes],
  123. include_comp: bool = False,
  124. allow_missing: bool = False,
  125. convert_ofs_delta: bool = True,
  126. ) -> Iterator["UnpackedObject"]:
  127. raise NotImplementedError(self.iter_unpacked_subset)
  128. class UnpackedObjectStream:
  129. def __iter__(self) -> Iterator["UnpackedObject"]:
  130. raise NotImplementedError(self.__iter__)
  131. def __len__(self) -> int:
  132. raise NotImplementedError(self.__len__)
  133. def take_msb_bytes(
  134. read: Callable[[int], bytes], crc32: Optional[int] = None
  135. ) -> Tuple[List[int], Optional[int]]:
  136. """Read bytes marked with most significant bit.
  137. Args:
  138. read: Read function
  139. """
  140. ret: List[int] = []
  141. while len(ret) == 0 or ret[-1] & 0x80:
  142. b = read(1)
  143. if crc32 is not None:
  144. crc32 = binascii.crc32(b, crc32)
  145. ret.append(ord(b[:1]))
  146. return ret, crc32
  147. class PackFileDisappeared(Exception):
  148. def __init__(self, obj) -> None:
  149. self.obj = obj
  150. class UnpackedObject:
  151. """Class encapsulating an object unpacked from a pack file.
  152. These objects should only be created from within unpack_object. Most
  153. members start out as empty and are filled in at various points by
  154. read_zlib_chunks, unpack_object, DeltaChainIterator, etc.
  155. End users of this object should take care that the function they're getting
  156. this object from is guaranteed to set the members they need.
  157. """
  158. __slots__ = [
  159. "offset", # Offset in its pack.
  160. "_sha", # Cached binary SHA.
  161. "obj_type_num", # Type of this object.
  162. "obj_chunks", # Decompressed and delta-resolved chunks.
  163. "pack_type_num", # Type of this object in the pack (may be a delta).
  164. "delta_base", # Delta base offset or SHA.
  165. "comp_chunks", # Compressed object chunks.
  166. "decomp_chunks", # Decompressed object chunks.
  167. "decomp_len", # Decompressed length of this object.
  168. "crc32", # CRC32.
  169. ]
  170. obj_type_num: Optional[int]
  171. obj_chunks: Optional[List[bytes]]
  172. delta_base: Union[None, bytes, int]
  173. decomp_chunks: List[bytes]
  174. comp_chunks: Optional[List[bytes]]
  175. # TODO(dborowitz): read_zlib_chunks and unpack_object could very well be
  176. # methods of this object.
  177. def __init__(
  178. self,
  179. pack_type_num,
  180. *,
  181. delta_base=None,
  182. decomp_len=None,
  183. crc32=None,
  184. sha=None,
  185. decomp_chunks=None,
  186. offset=None,
  187. ) -> None:
  188. self.offset = offset
  189. self._sha = sha
  190. self.pack_type_num = pack_type_num
  191. self.delta_base = delta_base
  192. self.comp_chunks = None
  193. self.decomp_chunks: List[bytes] = decomp_chunks or []
  194. if decomp_chunks is not None and decomp_len is None:
  195. self.decomp_len = sum(map(len, decomp_chunks))
  196. else:
  197. self.decomp_len = decomp_len
  198. self.crc32 = crc32
  199. if pack_type_num in DELTA_TYPES:
  200. self.obj_type_num = None
  201. self.obj_chunks = None
  202. else:
  203. self.obj_type_num = pack_type_num
  204. self.obj_chunks = self.decomp_chunks
  205. self.delta_base = delta_base
  206. def sha(self):
  207. """Return the binary SHA of this object."""
  208. if self._sha is None:
  209. self._sha = obj_sha(self.obj_type_num, self.obj_chunks)
  210. return self._sha
  211. def sha_file(self):
  212. """Return a ShaFile from this object."""
  213. assert self.obj_type_num is not None and self.obj_chunks is not None
  214. return ShaFile.from_raw_chunks(self.obj_type_num, self.obj_chunks)
  215. # Only provided for backwards compatibility with code that expects either
  216. # chunks or a delta tuple.
  217. def _obj(self) -> OldUnpackedObject:
  218. """Return the decompressed chunks, or (delta base, delta chunks)."""
  219. if self.pack_type_num in DELTA_TYPES:
  220. assert isinstance(self.delta_base, (bytes, int))
  221. return (self.delta_base, self.decomp_chunks)
  222. else:
  223. return self.decomp_chunks
  224. def __eq__(self, other):
  225. if not isinstance(other, UnpackedObject):
  226. return False
  227. for slot in self.__slots__:
  228. if getattr(self, slot) != getattr(other, slot):
  229. return False
  230. return True
  231. def __ne__(self, other):
  232. return not (self == other)
  233. def __repr__(self) -> str:
  234. data = [f"{s}={getattr(self, s)!r}" for s in self.__slots__]
  235. return "{}({})".format(self.__class__.__name__, ", ".join(data))
  236. _ZLIB_BUFSIZE = 4096
  237. def read_zlib_chunks(
  238. read_some: Callable[[int], bytes],
  239. unpacked: UnpackedObject,
  240. include_comp: bool = False,
  241. buffer_size: int = _ZLIB_BUFSIZE,
  242. ) -> bytes:
  243. """Read zlib data from a buffer.
  244. This function requires that the buffer have additional data following the
  245. compressed data, which is guaranteed to be the case for git pack files.
  246. Args:
  247. read_some: Read function that returns at least one byte, but may
  248. return less than the requested size.
  249. unpacked: An UnpackedObject to write result data to. If its crc32
  250. attr is not None, the CRC32 of the compressed bytes will be computed
  251. using this starting CRC32.
  252. After this function, will have the following attrs set:
  253. * comp_chunks (if include_comp is True)
  254. * decomp_chunks
  255. * decomp_len
  256. * crc32
  257. include_comp: If True, include compressed data in the result.
  258. buffer_size: Size of the read buffer.
  259. Returns: Leftover unused data from the decompression.
  260. Raises:
  261. zlib.error: if a decompression error occurred.
  262. """
  263. if unpacked.decomp_len <= -1:
  264. raise ValueError("non-negative zlib data stream size expected")
  265. decomp_obj = zlib.decompressobj()
  266. comp_chunks = []
  267. decomp_chunks = unpacked.decomp_chunks
  268. decomp_len = 0
  269. crc32 = unpacked.crc32
  270. while True:
  271. add = read_some(buffer_size)
  272. if not add:
  273. raise zlib.error("EOF before end of zlib stream")
  274. comp_chunks.append(add)
  275. decomp = decomp_obj.decompress(add)
  276. decomp_len += len(decomp)
  277. decomp_chunks.append(decomp)
  278. unused = decomp_obj.unused_data
  279. if unused:
  280. left = len(unused)
  281. if crc32 is not None:
  282. crc32 = binascii.crc32(add[:-left], crc32)
  283. if include_comp:
  284. comp_chunks[-1] = add[:-left]
  285. break
  286. elif crc32 is not None:
  287. crc32 = binascii.crc32(add, crc32)
  288. if crc32 is not None:
  289. crc32 &= 0xFFFFFFFF
  290. if decomp_len != unpacked.decomp_len:
  291. raise zlib.error("decompressed data does not match expected size")
  292. unpacked.crc32 = crc32
  293. if include_comp:
  294. unpacked.comp_chunks = comp_chunks
  295. return unused
  296. def iter_sha1(iter):
  297. """Return the hexdigest of the SHA1 over a set of names.
  298. Args:
  299. iter: Iterator over string objects
  300. Returns: 40-byte hex sha1 digest
  301. """
  302. sha = sha1()
  303. for name in iter:
  304. sha.update(name)
  305. return sha.hexdigest().encode("ascii")
  306. def load_pack_index(path):
  307. """Load an index file by path.
  308. Args:
  309. path: Path to the index file
  310. Returns: A PackIndex loaded from the given path
  311. """
  312. with GitFile(path, "rb") as f:
  313. return load_pack_index_file(path, f)
  314. def _load_file_contents(f, size=None):
  315. try:
  316. fd = f.fileno()
  317. except (UnsupportedOperation, AttributeError):
  318. fd = None
  319. # Attempt to use mmap if possible
  320. if fd is not None:
  321. if size is None:
  322. size = os.fstat(fd).st_size
  323. if has_mmap:
  324. try:
  325. contents = mmap.mmap(fd, size, access=mmap.ACCESS_READ)
  326. except OSError:
  327. # Perhaps a socket?
  328. pass
  329. else:
  330. return contents, size
  331. contents = f.read()
  332. size = len(contents)
  333. return contents, size
  334. def load_pack_index_file(path, f):
  335. """Load an index file from a file-like object.
  336. Args:
  337. path: Path for the index file
  338. f: File-like object
  339. Returns: A PackIndex loaded from the given file
  340. """
  341. contents, size = _load_file_contents(f)
  342. if contents[:4] == b"\377tOc":
  343. version = struct.unpack(b">L", contents[4:8])[0]
  344. if version == 2:
  345. return PackIndex2(path, file=f, contents=contents, size=size)
  346. else:
  347. raise KeyError("Unknown pack index format %d" % version)
  348. else:
  349. return PackIndex1(path, file=f, contents=contents, size=size)
  350. def bisect_find_sha(start, end, sha, unpack_name):
  351. """Find a SHA in a data blob with sorted SHAs.
  352. Args:
  353. start: Start index of range to search
  354. end: End index of range to search
  355. sha: Sha to find
  356. unpack_name: Callback to retrieve SHA by index
  357. Returns: Index of the SHA, or None if it wasn't found
  358. """
  359. assert start <= end
  360. while start <= end:
  361. i = (start + end) // 2
  362. file_sha = unpack_name(i)
  363. if file_sha < sha:
  364. start = i + 1
  365. elif file_sha > sha:
  366. end = i - 1
  367. else:
  368. return i
  369. return None
  370. PackIndexEntry = Tuple[bytes, int, Optional[int]]
  371. class PackIndex:
  372. """An index in to a packfile.
  373. Given a sha id of an object a pack index can tell you the location in the
  374. packfile of that object if it has it.
  375. """
  376. def __eq__(self, other):
  377. if not isinstance(other, PackIndex):
  378. return False
  379. for (name1, _, _), (name2, _, _) in zip(
  380. self.iterentries(), other.iterentries()
  381. ):
  382. if name1 != name2:
  383. return False
  384. return True
  385. def __ne__(self, other):
  386. return not self.__eq__(other)
  387. def __len__(self) -> int:
  388. """Return the number of entries in this pack index."""
  389. raise NotImplementedError(self.__len__)
  390. def __iter__(self) -> Iterator[bytes]:
  391. """Iterate over the SHAs in this pack."""
  392. return map(sha_to_hex, self._itersha())
  393. def iterentries(self) -> Iterator[PackIndexEntry]:
  394. """Iterate over the entries in this pack index.
  395. Returns: iterator over tuples with object name, offset in packfile and
  396. crc32 checksum.
  397. """
  398. raise NotImplementedError(self.iterentries)
  399. def get_pack_checksum(self) -> bytes:
  400. """Return the SHA1 checksum stored for the corresponding packfile.
  401. Returns: 20-byte binary digest
  402. """
  403. raise NotImplementedError(self.get_pack_checksum)
  404. def object_index(self, sha: bytes) -> int:
  405. warnings.warn(
  406. "Please use object_offset instead", DeprecationWarning, stacklevel=2
  407. )
  408. return self.object_offset(sha)
  409. def object_offset(self, sha: bytes) -> int:
  410. """Return the offset in to the corresponding packfile for the object.
  411. Given the name of an object it will return the offset that object
  412. lives at within the corresponding pack file. If the pack file doesn't
  413. have the object then None will be returned.
  414. """
  415. raise NotImplementedError(self.object_offset)
  416. def object_sha1(self, index: int) -> bytes:
  417. """Return the SHA1 corresponding to the index in the pack file."""
  418. for name, offset, crc32 in self.iterentries():
  419. if offset == index:
  420. return name
  421. else:
  422. raise KeyError(index)
  423. def _object_offset(self, sha: bytes) -> int:
  424. """See object_offset.
  425. Args:
  426. sha: A *binary* SHA string. (20 characters long)_
  427. """
  428. raise NotImplementedError(self._object_offset)
  429. def objects_sha1(self) -> bytes:
  430. """Return the hex SHA1 over all the shas of all objects in this pack.
  431. Note: This is used for the filename of the pack.
  432. """
  433. return iter_sha1(self._itersha())
  434. def _itersha(self) -> Iterator[bytes]:
  435. """Yield all the SHA1's of the objects in the index, sorted."""
  436. raise NotImplementedError(self._itersha)
  437. def close(self):
  438. pass
  439. def check(self) -> None:
  440. pass
  441. class MemoryPackIndex(PackIndex):
  442. """Pack index that is stored entirely in memory."""
  443. def __init__(self, entries, pack_checksum=None) -> None:
  444. """Create a new MemoryPackIndex.
  445. Args:
  446. entries: Sequence of name, idx, crc32 (sorted)
  447. pack_checksum: Optional pack checksum
  448. """
  449. self._by_sha = {}
  450. self._by_offset = {}
  451. for name, offset, crc32 in entries:
  452. self._by_sha[name] = offset
  453. self._by_offset[offset] = name
  454. self._entries = entries
  455. self._pack_checksum = pack_checksum
  456. def get_pack_checksum(self):
  457. return self._pack_checksum
  458. def __len__(self) -> int:
  459. return len(self._entries)
  460. def object_offset(self, sha):
  461. if len(sha) == 40:
  462. sha = hex_to_sha(sha)
  463. return self._by_sha[sha]
  464. def object_sha1(self, offset):
  465. return self._by_offset[offset]
  466. def _itersha(self):
  467. return iter(self._by_sha)
  468. def iterentries(self):
  469. return iter(self._entries)
  470. @classmethod
  471. def for_pack(cls, pack):
  472. return MemoryPackIndex(pack.sorted_entries(), pack.calculate_checksum())
  473. @classmethod
  474. def clone(cls, other_index):
  475. return cls(other_index.iterentries(), other_index.get_pack_checksum())
  476. class FilePackIndex(PackIndex):
  477. """Pack index that is based on a file.
  478. To do the loop it opens the file, and indexes first 256 4 byte groups
  479. with the first byte of the sha id. The value in the four byte group indexed
  480. is the end of the group that shares the same starting byte. Subtract one
  481. from the starting byte and index again to find the start of the group.
  482. The values are sorted by sha id within the group, so do the math to find
  483. the start and end offset and then bisect in to find if the value is
  484. present.
  485. """
  486. _fan_out_table: List[int]
  487. def __init__(self, filename, file=None, contents=None, size=None) -> None:
  488. """Create a pack index object.
  489. Provide it with the name of the index file to consider, and it will map
  490. it whenever required.
  491. """
  492. self._filename = filename
  493. # Take the size now, so it can be checked each time we map the file to
  494. # ensure that it hasn't changed.
  495. if file is None:
  496. self._file = GitFile(filename, "rb")
  497. else:
  498. self._file = file
  499. if contents is None:
  500. self._contents, self._size = _load_file_contents(self._file, size)
  501. else:
  502. self._contents, self._size = (contents, size)
  503. @property
  504. def path(self) -> str:
  505. return self._filename
  506. def __eq__(self, other):
  507. # Quick optimization:
  508. if (
  509. isinstance(other, FilePackIndex)
  510. and self._fan_out_table != other._fan_out_table
  511. ):
  512. return False
  513. return super().__eq__(other)
  514. def close(self) -> None:
  515. self._file.close()
  516. if getattr(self._contents, "close", None) is not None:
  517. self._contents.close()
  518. def __len__(self) -> int:
  519. """Return the number of entries in this pack index."""
  520. return self._fan_out_table[-1]
  521. def _unpack_entry(self, i: int) -> PackIndexEntry:
  522. """Unpack the i-th entry in the index file.
  523. Returns: Tuple with object name (SHA), offset in pack file and CRC32
  524. checksum (if known).
  525. """
  526. raise NotImplementedError(self._unpack_entry)
  527. def _unpack_name(self, i):
  528. """Unpack the i-th name from the index file."""
  529. raise NotImplementedError(self._unpack_name)
  530. def _unpack_offset(self, i):
  531. """Unpack the i-th object offset from the index file."""
  532. raise NotImplementedError(self._unpack_offset)
  533. def _unpack_crc32_checksum(self, i):
  534. """Unpack the crc32 checksum for the ith object from the index file."""
  535. raise NotImplementedError(self._unpack_crc32_checksum)
  536. def _itersha(self) -> Iterator[bytes]:
  537. for i in range(len(self)):
  538. yield self._unpack_name(i)
  539. def iterentries(self) -> Iterator[PackIndexEntry]:
  540. """Iterate over the entries in this pack index.
  541. Returns: iterator over tuples with object name, offset in packfile and
  542. crc32 checksum.
  543. """
  544. for i in range(len(self)):
  545. yield self._unpack_entry(i)
  546. def _read_fan_out_table(self, start_offset: int):
  547. ret = []
  548. for i in range(0x100):
  549. fanout_entry = self._contents[
  550. start_offset + i * 4 : start_offset + (i + 1) * 4
  551. ]
  552. ret.append(struct.unpack(">L", fanout_entry)[0])
  553. return ret
  554. def check(self) -> None:
  555. """Check that the stored checksum matches the actual checksum."""
  556. actual = self.calculate_checksum()
  557. stored = self.get_stored_checksum()
  558. if actual != stored:
  559. raise ChecksumMismatch(stored, actual)
  560. def calculate_checksum(self) -> bytes:
  561. """Calculate the SHA1 checksum over this pack index.
  562. Returns: This is a 20-byte binary digest
  563. """
  564. return sha1(self._contents[:-20]).digest()
  565. def get_pack_checksum(self) -> bytes:
  566. """Return the SHA1 checksum stored for the corresponding packfile.
  567. Returns: 20-byte binary digest
  568. """
  569. return bytes(self._contents[-40:-20])
  570. def get_stored_checksum(self) -> bytes:
  571. """Return the SHA1 checksum stored for this index.
  572. Returns: 20-byte binary digest
  573. """
  574. return bytes(self._contents[-20:])
  575. def object_offset(self, sha: bytes) -> int:
  576. """Return the offset in to the corresponding packfile for the object.
  577. Given the name of an object it will return the offset that object
  578. lives at within the corresponding pack file. If the pack file doesn't
  579. have the object then None will be returned.
  580. """
  581. if len(sha) == 40:
  582. sha = hex_to_sha(sha)
  583. try:
  584. return self._object_offset(sha)
  585. except ValueError as exc:
  586. closed = getattr(self._contents, "closed", None)
  587. if closed in (None, True):
  588. raise PackFileDisappeared(self) from exc
  589. raise
  590. def _object_offset(self, sha: bytes) -> int:
  591. """See object_offset.
  592. Args:
  593. sha: A *binary* SHA string. (20 characters long)_
  594. """
  595. assert len(sha) == 20
  596. idx = ord(sha[:1])
  597. if idx == 0:
  598. start = 0
  599. else:
  600. start = self._fan_out_table[idx - 1]
  601. end = self._fan_out_table[idx]
  602. i = bisect_find_sha(start, end, sha, self._unpack_name)
  603. if i is None:
  604. raise KeyError(sha)
  605. return self._unpack_offset(i)
  606. class PackIndex1(FilePackIndex):
  607. """Version 1 Pack Index file."""
  608. def __init__(self, filename: str, file=None, contents=None, size=None) -> None:
  609. super().__init__(filename, file, contents, size)
  610. self.version = 1
  611. self._fan_out_table = self._read_fan_out_table(0)
  612. def _unpack_entry(self, i):
  613. (offset, name) = unpack_from(">L20s", self._contents, (0x100 * 4) + (i * 24))
  614. return (name, offset, None)
  615. def _unpack_name(self, i):
  616. offset = (0x100 * 4) + (i * 24) + 4
  617. return self._contents[offset : offset + 20]
  618. def _unpack_offset(self, i):
  619. offset = (0x100 * 4) + (i * 24)
  620. return unpack_from(">L", self._contents, offset)[0]
  621. def _unpack_crc32_checksum(self, i):
  622. # Not stored in v1 index files
  623. return None
  624. class PackIndex2(FilePackIndex):
  625. """Version 2 Pack Index file."""
  626. def __init__(self, filename: str, file=None, contents=None, size=None) -> None:
  627. super().__init__(filename, file, contents, size)
  628. if self._contents[:4] != b"\377tOc":
  629. raise AssertionError("Not a v2 pack index file")
  630. (self.version,) = unpack_from(b">L", self._contents, 4)
  631. if self.version != 2:
  632. raise AssertionError("Version was %d" % self.version)
  633. self._fan_out_table = self._read_fan_out_table(8)
  634. self._name_table_offset = 8 + 0x100 * 4
  635. self._crc32_table_offset = self._name_table_offset + 20 * len(self)
  636. self._pack_offset_table_offset = self._crc32_table_offset + 4 * len(self)
  637. self._pack_offset_largetable_offset = self._pack_offset_table_offset + 4 * len(
  638. self
  639. )
  640. def _unpack_entry(self, i):
  641. return (
  642. self._unpack_name(i),
  643. self._unpack_offset(i),
  644. self._unpack_crc32_checksum(i),
  645. )
  646. def _unpack_name(self, i):
  647. offset = self._name_table_offset + i * 20
  648. return self._contents[offset : offset + 20]
  649. def _unpack_offset(self, i):
  650. offset = self._pack_offset_table_offset + i * 4
  651. offset = unpack_from(">L", self._contents, offset)[0]
  652. if offset & (2**31):
  653. offset = self._pack_offset_largetable_offset + (offset & (2**31 - 1)) * 8
  654. offset = unpack_from(">Q", self._contents, offset)[0]
  655. return offset
  656. def _unpack_crc32_checksum(self, i):
  657. return unpack_from(">L", self._contents, self._crc32_table_offset + i * 4)[0]
  658. def read_pack_header(read) -> Tuple[int, int]:
  659. """Read the header of a pack file.
  660. Args:
  661. read: Read function
  662. Returns: Tuple of (pack version, number of objects). If no data is
  663. available to read, returns (None, None).
  664. """
  665. header = read(12)
  666. if not header:
  667. raise AssertionError("file too short to contain pack")
  668. if header[:4] != b"PACK":
  669. raise AssertionError("Invalid pack header %r" % header)
  670. (version,) = unpack_from(b">L", header, 4)
  671. if version not in (2, 3):
  672. raise AssertionError("Version was %d" % version)
  673. (num_objects,) = unpack_from(b">L", header, 8)
  674. return (version, num_objects)
  675. def chunks_length(chunks: Union[bytes, Iterable[bytes]]) -> int:
  676. if isinstance(chunks, bytes):
  677. return len(chunks)
  678. else:
  679. return sum(map(len, chunks))
  680. def unpack_object(
  681. read_all: Callable[[int], bytes],
  682. read_some: Optional[Callable[[int], bytes]] = None,
  683. compute_crc32=False,
  684. include_comp=False,
  685. zlib_bufsize=_ZLIB_BUFSIZE,
  686. ) -> Tuple[UnpackedObject, bytes]:
  687. """Unpack a Git object.
  688. Args:
  689. read_all: Read function that blocks until the number of requested
  690. bytes are read.
  691. read_some: Read function that returns at least one byte, but may not
  692. return the number of bytes requested.
  693. compute_crc32: If True, compute the CRC32 of the compressed data. If
  694. False, the returned CRC32 will be None.
  695. include_comp: If True, include compressed data in the result.
  696. zlib_bufsize: An optional buffer size for zlib operations.
  697. Returns: A tuple of (unpacked, unused), where unused is the unused data
  698. leftover from decompression, and unpacked in an UnpackedObject with
  699. the following attrs set:
  700. * obj_chunks (for non-delta types)
  701. * pack_type_num
  702. * delta_base (for delta types)
  703. * comp_chunks (if include_comp is True)
  704. * decomp_chunks
  705. * decomp_len
  706. * crc32 (if compute_crc32 is True)
  707. """
  708. if read_some is None:
  709. read_some = read_all
  710. if compute_crc32:
  711. crc32 = 0
  712. else:
  713. crc32 = None
  714. raw, crc32 = take_msb_bytes(read_all, crc32=crc32)
  715. type_num = (raw[0] >> 4) & 0x07
  716. size = raw[0] & 0x0F
  717. for i, byte in enumerate(raw[1:]):
  718. size += (byte & 0x7F) << ((i * 7) + 4)
  719. delta_base: Union[int, bytes, None]
  720. raw_base = len(raw)
  721. if type_num == OFS_DELTA:
  722. raw, crc32 = take_msb_bytes(read_all, crc32=crc32)
  723. raw_base += len(raw)
  724. if raw[-1] & 0x80:
  725. raise AssertionError
  726. delta_base_offset = raw[0] & 0x7F
  727. for byte in raw[1:]:
  728. delta_base_offset += 1
  729. delta_base_offset <<= 7
  730. delta_base_offset += byte & 0x7F
  731. delta_base = delta_base_offset
  732. elif type_num == REF_DELTA:
  733. delta_base_obj = read_all(20)
  734. if crc32 is not None:
  735. crc32 = binascii.crc32(delta_base_obj, crc32)
  736. delta_base = delta_base_obj
  737. raw_base += 20
  738. else:
  739. delta_base = None
  740. unpacked = UnpackedObject(
  741. type_num, delta_base=delta_base, decomp_len=size, crc32=crc32
  742. )
  743. unused = read_zlib_chunks(
  744. read_some,
  745. unpacked,
  746. buffer_size=zlib_bufsize,
  747. include_comp=include_comp,
  748. )
  749. return unpacked, unused
  750. def _compute_object_size(value):
  751. """Compute the size of a unresolved object for use with LRUSizeCache."""
  752. (num, obj) = value
  753. if num in DELTA_TYPES:
  754. return chunks_length(obj[1])
  755. return chunks_length(obj)
  756. class PackStreamReader:
  757. """Class to read a pack stream.
  758. The pack is read from a ReceivableProtocol using read() or recv() as
  759. appropriate.
  760. """
  761. def __init__(self, read_all, read_some=None, zlib_bufsize=_ZLIB_BUFSIZE) -> None:
  762. self.read_all = read_all
  763. if read_some is None:
  764. self.read_some = read_all
  765. else:
  766. self.read_some = read_some
  767. self.sha = sha1()
  768. self._offset = 0
  769. self._rbuf = BytesIO()
  770. # trailer is a deque to avoid memory allocation on small reads
  771. self._trailer: Deque[bytes] = deque()
  772. self._zlib_bufsize = zlib_bufsize
  773. def _read(self, read, size):
  774. """Read up to size bytes using the given callback.
  775. As a side effect, update the verifier's hash (excluding the last 20
  776. bytes read).
  777. Args:
  778. read: The read callback to read from.
  779. size: The maximum number of bytes to read; the particular
  780. behavior is callback-specific.
  781. """
  782. data = read(size)
  783. # maintain a trailer of the last 20 bytes we've read
  784. n = len(data)
  785. self._offset += n
  786. tn = len(self._trailer)
  787. if n >= 20:
  788. to_pop = tn
  789. to_add = 20
  790. else:
  791. to_pop = max(n + tn - 20, 0)
  792. to_add = n
  793. self.sha.update(
  794. bytes(bytearray([self._trailer.popleft() for _ in range(to_pop)]))
  795. )
  796. self._trailer.extend(data[-to_add:])
  797. # hash everything but the trailer
  798. self.sha.update(data[:-to_add])
  799. return data
  800. def _buf_len(self):
  801. buf = self._rbuf
  802. start = buf.tell()
  803. buf.seek(0, SEEK_END)
  804. end = buf.tell()
  805. buf.seek(start)
  806. return end - start
  807. @property
  808. def offset(self):
  809. return self._offset - self._buf_len()
  810. def read(self, size):
  811. """Read, blocking until size bytes are read."""
  812. buf_len = self._buf_len()
  813. if buf_len >= size:
  814. return self._rbuf.read(size)
  815. buf_data = self._rbuf.read()
  816. self._rbuf = BytesIO()
  817. return buf_data + self._read(self.read_all, size - buf_len)
  818. def recv(self, size):
  819. """Read up to size bytes, blocking until one byte is read."""
  820. buf_len = self._buf_len()
  821. if buf_len:
  822. data = self._rbuf.read(size)
  823. if size >= buf_len:
  824. self._rbuf = BytesIO()
  825. return data
  826. return self._read(self.read_some, size)
  827. def __len__(self) -> int:
  828. return self._num_objects
  829. def read_objects(self, compute_crc32=False) -> Iterator[UnpackedObject]:
  830. """Read the objects in this pack file.
  831. Args:
  832. compute_crc32: If True, compute the CRC32 of the compressed
  833. data. If False, the returned CRC32 will be None.
  834. Returns: Iterator over UnpackedObjects with the following members set:
  835. offset
  836. obj_type_num
  837. obj_chunks (for non-delta types)
  838. delta_base (for delta types)
  839. decomp_chunks
  840. decomp_len
  841. crc32 (if compute_crc32 is True)
  842. Raises:
  843. ChecksumMismatch: if the checksum of the pack contents does not
  844. match the checksum in the pack trailer.
  845. zlib.error: if an error occurred during zlib decompression.
  846. IOError: if an error occurred writing to the output file.
  847. """
  848. pack_version, self._num_objects = read_pack_header(self.read)
  849. for i in range(self._num_objects):
  850. offset = self.offset
  851. unpacked, unused = unpack_object(
  852. self.read,
  853. read_some=self.recv,
  854. compute_crc32=compute_crc32,
  855. zlib_bufsize=self._zlib_bufsize,
  856. )
  857. unpacked.offset = offset
  858. # prepend any unused data to current read buffer
  859. buf = BytesIO()
  860. buf.write(unused)
  861. buf.write(self._rbuf.read())
  862. buf.seek(0)
  863. self._rbuf = buf
  864. yield unpacked
  865. if self._buf_len() < 20:
  866. # If the read buffer is full, then the last read() got the whole
  867. # trailer off the wire. If not, it means there is still some of the
  868. # trailer to read. We need to read() all 20 bytes; N come from the
  869. # read buffer and (20 - N) come from the wire.
  870. self.read(20)
  871. pack_sha = bytearray(self._trailer) # type: ignore
  872. if pack_sha != self.sha.digest():
  873. raise ChecksumMismatch(sha_to_hex(pack_sha), self.sha.hexdigest())
  874. class PackStreamCopier(PackStreamReader):
  875. """Class to verify a pack stream as it is being read.
  876. The pack is read from a ReceivableProtocol using read() or recv() as
  877. appropriate and written out to the given file-like object.
  878. """
  879. def __init__(self, read_all, read_some, outfile, delta_iter=None) -> None:
  880. """Initialize the copier.
  881. Args:
  882. read_all: Read function that blocks until the number of
  883. requested bytes are read.
  884. read_some: Read function that returns at least one byte, but may
  885. not return the number of bytes requested.
  886. outfile: File-like object to write output through.
  887. delta_iter: Optional DeltaChainIterator to record deltas as we
  888. read them.
  889. """
  890. super().__init__(read_all, read_some=read_some)
  891. self.outfile = outfile
  892. self._delta_iter = delta_iter
  893. def _read(self, read, size):
  894. """Read data from the read callback and write it to the file."""
  895. data = super()._read(read, size)
  896. self.outfile.write(data)
  897. return data
  898. def verify(self, progress=None):
  899. """Verify a pack stream and write it to the output file.
  900. See PackStreamReader.iterobjects for a list of exceptions this may
  901. throw.
  902. """
  903. i = 0 # default count of entries if read_objects() is empty
  904. for i, unpacked in enumerate(self.read_objects()):
  905. if self._delta_iter:
  906. self._delta_iter.record(unpacked)
  907. if progress is not None:
  908. progress(
  909. ("copying pack entries: %d/%d\r" % (i, len(self))).encode("ascii")
  910. )
  911. if progress is not None:
  912. progress(("copied %d pack entries\n" % i).encode("ascii"))
  913. def obj_sha(type, chunks):
  914. """Compute the SHA for a numeric type and object chunks."""
  915. sha = sha1()
  916. sha.update(object_header(type, chunks_length(chunks)))
  917. if isinstance(chunks, bytes):
  918. sha.update(chunks)
  919. else:
  920. for chunk in chunks:
  921. sha.update(chunk)
  922. return sha.digest()
  923. def compute_file_sha(f, start_ofs=0, end_ofs=0, buffer_size=1 << 16):
  924. """Hash a portion of a file into a new SHA.
  925. Args:
  926. f: A file-like object to read from that supports seek().
  927. start_ofs: The offset in the file to start reading at.
  928. end_ofs: The offset in the file to end reading at, relative to the
  929. end of the file.
  930. buffer_size: A buffer size for reading.
  931. Returns: A new SHA object updated with data read from the file.
  932. """
  933. sha = sha1()
  934. f.seek(0, SEEK_END)
  935. length = f.tell()
  936. if (end_ofs < 0 and length + end_ofs < start_ofs) or end_ofs > length:
  937. raise AssertionError(
  938. "Attempt to read beyond file length. "
  939. "start_ofs: %d, end_ofs: %d, file length: %d" % (start_ofs, end_ofs, length)
  940. )
  941. todo = length + end_ofs - start_ofs
  942. f.seek(start_ofs)
  943. while todo:
  944. data = f.read(min(todo, buffer_size))
  945. sha.update(data)
  946. todo -= len(data)
  947. return sha
  948. class PackData:
  949. """The data contained in a packfile.
  950. Pack files can be accessed both sequentially for exploding a pack, and
  951. directly with the help of an index to retrieve a specific object.
  952. The objects within are either complete or a delta against another.
  953. The header is variable length. If the MSB of each byte is set then it
  954. indicates that the subsequent byte is still part of the header.
  955. For the first byte the next MS bits are the type, which tells you the type
  956. of object, and whether it is a delta. The LS byte is the lowest bits of the
  957. size. For each subsequent byte the LS 7 bits are the next MS bits of the
  958. size, i.e. the last byte of the header contains the MS bits of the size.
  959. For the complete objects the data is stored as zlib deflated data.
  960. The size in the header is the uncompressed object size, so to uncompress
  961. you need to just keep feeding data to zlib until you get an object back,
  962. or it errors on bad data. This is done here by just giving the complete
  963. buffer from the start of the deflated object on. This is bad, but until I
  964. get mmap sorted out it will have to do.
  965. Currently there are no integrity checks done. Also no attempt is made to
  966. try and detect the delta case, or a request for an object at the wrong
  967. position. It will all just throw a zlib or KeyError.
  968. """
  969. def __init__(self, filename, file=None, size=None) -> None:
  970. """Create a PackData object representing the pack in the given filename.
  971. The file must exist and stay readable until the object is disposed of.
  972. It must also stay the same size. It will be mapped whenever needed.
  973. Currently there is a restriction on the size of the pack as the python
  974. mmap implementation is flawed.
  975. """
  976. self._filename = filename
  977. self._size = size
  978. self._header_size = 12
  979. if file is None:
  980. self._file = GitFile(self._filename, "rb")
  981. else:
  982. self._file = file
  983. (version, self._num_objects) = read_pack_header(self._file.read)
  984. self._offset_cache = LRUSizeCache[int, Tuple[int, OldUnpackedObject]](
  985. 1024 * 1024 * 20, compute_size=_compute_object_size
  986. )
  987. @property
  988. def filename(self):
  989. return os.path.basename(self._filename)
  990. @property
  991. def path(self):
  992. return self._filename
  993. @classmethod
  994. def from_file(cls, file, size=None):
  995. return cls(str(file), file=file, size=size)
  996. @classmethod
  997. def from_path(cls, path):
  998. return cls(filename=path)
  999. def close(self):
  1000. self._file.close()
  1001. def __enter__(self):
  1002. return self
  1003. def __exit__(self, exc_type, exc_val, exc_tb):
  1004. self.close()
  1005. def __eq__(self, other):
  1006. if isinstance(other, PackData):
  1007. return self.get_stored_checksum() == other.get_stored_checksum()
  1008. return False
  1009. def _get_size(self):
  1010. if self._size is not None:
  1011. return self._size
  1012. self._size = os.path.getsize(self._filename)
  1013. if self._size < self._header_size:
  1014. errmsg = "%s is too small for a packfile (%d < %d)" % (
  1015. self._filename,
  1016. self._size,
  1017. self._header_size,
  1018. )
  1019. raise AssertionError(errmsg)
  1020. return self._size
  1021. def __len__(self) -> int:
  1022. """Returns the number of objects in this pack."""
  1023. return self._num_objects
  1024. def calculate_checksum(self):
  1025. """Calculate the checksum for this pack.
  1026. Returns: 20-byte binary SHA1 digest
  1027. """
  1028. return compute_file_sha(self._file, end_ofs=-20).digest()
  1029. def iter_unpacked(self, *, include_comp: bool = False):
  1030. self._file.seek(self._header_size)
  1031. if self._num_objects is None:
  1032. return
  1033. for _ in range(self._num_objects):
  1034. offset = self._file.tell()
  1035. unpacked, unused = unpack_object(
  1036. self._file.read, compute_crc32=False, include_comp=include_comp
  1037. )
  1038. unpacked.offset = offset
  1039. yield unpacked
  1040. # Back up over unused data.
  1041. self._file.seek(-len(unused), SEEK_CUR)
  1042. def iterentries(
  1043. self, progress=None, resolve_ext_ref: Optional[ResolveExtRefFn] = None
  1044. ):
  1045. """Yield entries summarizing the contents of this pack.
  1046. Args:
  1047. progress: Progress function, called with current and total
  1048. object count.
  1049. Returns: iterator of tuples with (sha, offset, crc32)
  1050. """
  1051. num_objects = self._num_objects
  1052. indexer = PackIndexer.for_pack_data(self, resolve_ext_ref=resolve_ext_ref)
  1053. for i, result in enumerate(indexer):
  1054. if progress is not None:
  1055. progress(i, num_objects)
  1056. yield result
  1057. def sorted_entries(
  1058. self,
  1059. progress: Optional[ProgressFn] = None,
  1060. resolve_ext_ref: Optional[ResolveExtRefFn] = None,
  1061. ):
  1062. """Return entries in this pack, sorted by SHA.
  1063. Args:
  1064. progress: Progress function, called with current and total
  1065. object count
  1066. Returns: Iterator of tuples with (sha, offset, crc32)
  1067. """
  1068. return sorted(
  1069. self.iterentries(progress=progress, resolve_ext_ref=resolve_ext_ref)
  1070. )
  1071. def create_index_v1(self, filename, progress=None, resolve_ext_ref=None):
  1072. """Create a version 1 file for this data file.
  1073. Args:
  1074. filename: Index filename.
  1075. progress: Progress report function
  1076. Returns: Checksum of index file
  1077. """
  1078. entries = self.sorted_entries(
  1079. progress=progress, resolve_ext_ref=resolve_ext_ref
  1080. )
  1081. with GitFile(filename, "wb") as f:
  1082. return write_pack_index_v1(f, entries, self.calculate_checksum())
  1083. def create_index_v2(self, filename, progress=None, resolve_ext_ref=None):
  1084. """Create a version 2 index file for this data file.
  1085. Args:
  1086. filename: Index filename.
  1087. progress: Progress report function
  1088. Returns: Checksum of index file
  1089. """
  1090. entries = self.sorted_entries(
  1091. progress=progress, resolve_ext_ref=resolve_ext_ref
  1092. )
  1093. with GitFile(filename, "wb") as f:
  1094. return write_pack_index_v2(f, entries, self.calculate_checksum())
  1095. def create_index(self, filename, progress=None, version=2, resolve_ext_ref=None):
  1096. """Create an index file for this data file.
  1097. Args:
  1098. filename: Index filename.
  1099. progress: Progress report function
  1100. Returns: Checksum of index file
  1101. """
  1102. if version == 1:
  1103. return self.create_index_v1(
  1104. filename, progress, resolve_ext_ref=resolve_ext_ref
  1105. )
  1106. elif version == 2:
  1107. return self.create_index_v2(
  1108. filename, progress, resolve_ext_ref=resolve_ext_ref
  1109. )
  1110. else:
  1111. raise ValueError("unknown index format %d" % version)
  1112. def get_stored_checksum(self):
  1113. """Return the expected checksum stored in this pack."""
  1114. self._file.seek(-20, SEEK_END)
  1115. return self._file.read(20)
  1116. def check(self):
  1117. """Check the consistency of this pack."""
  1118. actual = self.calculate_checksum()
  1119. stored = self.get_stored_checksum()
  1120. if actual != stored:
  1121. raise ChecksumMismatch(stored, actual)
  1122. def get_unpacked_object_at(
  1123. self, offset: int, *, include_comp: bool = False
  1124. ) -> UnpackedObject:
  1125. """Given offset in the packfile return a UnpackedObject."""
  1126. assert offset >= self._header_size
  1127. self._file.seek(offset)
  1128. unpacked, _ = unpack_object(self._file.read, include_comp=include_comp)
  1129. unpacked.offset = offset
  1130. return unpacked
  1131. def get_object_at(self, offset: int) -> Tuple[int, OldUnpackedObject]:
  1132. """Given an offset in to the packfile return the object that is there.
  1133. Using the associated index the location of an object can be looked up,
  1134. and then the packfile can be asked directly for that object using this
  1135. function.
  1136. """
  1137. try:
  1138. return self._offset_cache[offset]
  1139. except KeyError:
  1140. pass
  1141. unpacked = self.get_unpacked_object_at(offset, include_comp=False)
  1142. return (unpacked.pack_type_num, unpacked._obj())
  1143. T = TypeVar("T")
  1144. class DeltaChainIterator(Generic[T]):
  1145. """Abstract iterator over pack data based on delta chains.
  1146. Each object in the pack is guaranteed to be inflated exactly once,
  1147. regardless of how many objects reference it as a delta base. As a result,
  1148. memory usage is proportional to the length of the longest delta chain.
  1149. Subclasses can override _result to define the result type of the iterator.
  1150. By default, results are UnpackedObjects with the following members set:
  1151. * offset
  1152. * obj_type_num
  1153. * obj_chunks
  1154. * pack_type_num
  1155. * delta_base (for delta types)
  1156. * comp_chunks (if _include_comp is True)
  1157. * decomp_chunks
  1158. * decomp_len
  1159. * crc32 (if _compute_crc32 is True)
  1160. """
  1161. _compute_crc32 = False
  1162. _include_comp = False
  1163. def __init__(self, file_obj, *, resolve_ext_ref=None) -> None:
  1164. self._file = file_obj
  1165. self._resolve_ext_ref = resolve_ext_ref
  1166. self._pending_ofs: Dict[int, List[int]] = defaultdict(list)
  1167. self._pending_ref: Dict[bytes, List[int]] = defaultdict(list)
  1168. self._full_ofs: List[Tuple[int, int]] = []
  1169. self._ext_refs: List[bytes] = []
  1170. @classmethod
  1171. def for_pack_data(cls, pack_data: PackData, resolve_ext_ref=None):
  1172. walker = cls(None, resolve_ext_ref=resolve_ext_ref)
  1173. walker.set_pack_data(pack_data)
  1174. for unpacked in pack_data.iter_unpacked(include_comp=False):
  1175. walker.record(unpacked)
  1176. return walker
  1177. @classmethod
  1178. def for_pack_subset(
  1179. cls,
  1180. pack: "Pack",
  1181. shas: Iterable[bytes],
  1182. *,
  1183. allow_missing: bool = False,
  1184. resolve_ext_ref=None,
  1185. ):
  1186. walker = cls(None, resolve_ext_ref=resolve_ext_ref)
  1187. walker.set_pack_data(pack.data)
  1188. todo = set()
  1189. for sha in shas:
  1190. assert isinstance(sha, bytes)
  1191. try:
  1192. off = pack.index.object_offset(sha)
  1193. except KeyError:
  1194. if not allow_missing:
  1195. raise
  1196. else:
  1197. todo.add(off)
  1198. done = set()
  1199. while todo:
  1200. off = todo.pop()
  1201. unpacked = pack.data.get_unpacked_object_at(off)
  1202. walker.record(unpacked)
  1203. done.add(off)
  1204. base_ofs = None
  1205. if unpacked.pack_type_num == OFS_DELTA:
  1206. base_ofs = unpacked.offset - unpacked.delta_base
  1207. elif unpacked.pack_type_num == REF_DELTA:
  1208. with suppress(KeyError):
  1209. assert isinstance(unpacked.delta_base, bytes)
  1210. base_ofs = pack.index.object_index(unpacked.delta_base)
  1211. if base_ofs is not None and base_ofs not in done:
  1212. todo.add(base_ofs)
  1213. return walker
  1214. def record(self, unpacked: UnpackedObject) -> None:
  1215. type_num = unpacked.pack_type_num
  1216. offset = unpacked.offset
  1217. if type_num == OFS_DELTA:
  1218. base_offset = offset - unpacked.delta_base
  1219. self._pending_ofs[base_offset].append(offset)
  1220. elif type_num == REF_DELTA:
  1221. assert isinstance(unpacked.delta_base, bytes)
  1222. self._pending_ref[unpacked.delta_base].append(offset)
  1223. else:
  1224. self._full_ofs.append((offset, type_num))
  1225. def set_pack_data(self, pack_data: PackData) -> None:
  1226. self._file = pack_data._file
  1227. def _walk_all_chains(self):
  1228. for offset, type_num in self._full_ofs:
  1229. yield from self._follow_chain(offset, type_num, None)
  1230. yield from self._walk_ref_chains()
  1231. assert not self._pending_ofs, repr(self._pending_ofs)
  1232. def _ensure_no_pending(self) -> None:
  1233. if self._pending_ref:
  1234. raise UnresolvedDeltas([sha_to_hex(s) for s in self._pending_ref])
  1235. def _walk_ref_chains(self):
  1236. if not self._resolve_ext_ref:
  1237. self._ensure_no_pending()
  1238. return
  1239. for base_sha, pending in sorted(self._pending_ref.items()):
  1240. if base_sha not in self._pending_ref:
  1241. continue
  1242. try:
  1243. type_num, chunks = self._resolve_ext_ref(base_sha)
  1244. except KeyError:
  1245. # Not an external ref, but may depend on one. Either it will
  1246. # get popped via a _follow_chain call, or we will raise an
  1247. # error below.
  1248. continue
  1249. self._ext_refs.append(base_sha)
  1250. self._pending_ref.pop(base_sha)
  1251. for new_offset in pending:
  1252. yield from self._follow_chain(new_offset, type_num, chunks)
  1253. self._ensure_no_pending()
  1254. def _result(self, unpacked: UnpackedObject) -> T:
  1255. raise NotImplementedError
  1256. def _resolve_object(
  1257. self, offset: int, obj_type_num: int, base_chunks: List[bytes]
  1258. ) -> UnpackedObject:
  1259. self._file.seek(offset)
  1260. unpacked, _ = unpack_object(
  1261. self._file.read,
  1262. include_comp=self._include_comp,
  1263. compute_crc32=self._compute_crc32,
  1264. )
  1265. unpacked.offset = offset
  1266. if base_chunks is None:
  1267. assert unpacked.pack_type_num == obj_type_num
  1268. else:
  1269. assert unpacked.pack_type_num in DELTA_TYPES
  1270. unpacked.obj_type_num = obj_type_num
  1271. unpacked.obj_chunks = apply_delta(base_chunks, unpacked.decomp_chunks)
  1272. return unpacked
  1273. def _follow_chain(self, offset: int, obj_type_num: int, base_chunks: List[bytes]):
  1274. # Unlike PackData.get_object_at, there is no need to cache offsets as
  1275. # this approach by design inflates each object exactly once.
  1276. todo = [(offset, obj_type_num, base_chunks)]
  1277. while todo:
  1278. (offset, obj_type_num, base_chunks) = todo.pop()
  1279. unpacked = self._resolve_object(offset, obj_type_num, base_chunks)
  1280. yield self._result(unpacked)
  1281. unblocked = chain(
  1282. self._pending_ofs.pop(unpacked.offset, []),
  1283. self._pending_ref.pop(unpacked.sha(), []),
  1284. )
  1285. todo.extend(
  1286. (new_offset, unpacked.obj_type_num, unpacked.obj_chunks) # type: ignore
  1287. for new_offset in unblocked
  1288. )
  1289. def __iter__(self) -> Iterator[T]:
  1290. return self._walk_all_chains()
  1291. def ext_refs(self):
  1292. return self._ext_refs
  1293. class UnpackedObjectIterator(DeltaChainIterator[UnpackedObject]):
  1294. """Delta chain iterator that yield unpacked objects."""
  1295. def _result(self, unpacked):
  1296. return unpacked
  1297. class PackIndexer(DeltaChainIterator[PackIndexEntry]):
  1298. """Delta chain iterator that yields index entries."""
  1299. _compute_crc32 = True
  1300. def _result(self, unpacked):
  1301. return unpacked.sha(), unpacked.offset, unpacked.crc32
  1302. class PackInflater(DeltaChainIterator[ShaFile]):
  1303. """Delta chain iterator that yields ShaFile objects."""
  1304. def _result(self, unpacked):
  1305. return unpacked.sha_file()
  1306. class SHA1Reader:
  1307. """Wrapper for file-like object that remembers the SHA1 of its data."""
  1308. def __init__(self, f) -> None:
  1309. self.f = f
  1310. self.sha1 = sha1(b"")
  1311. def read(self, num=None):
  1312. data = self.f.read(num)
  1313. self.sha1.update(data)
  1314. return data
  1315. def check_sha(self):
  1316. stored = self.f.read(20)
  1317. if stored != self.sha1.digest():
  1318. raise ChecksumMismatch(self.sha1.hexdigest(), sha_to_hex(stored))
  1319. def close(self):
  1320. return self.f.close()
  1321. def tell(self):
  1322. return self.f.tell()
  1323. class SHA1Writer:
  1324. """Wrapper for file-like object that remembers the SHA1 of its data."""
  1325. def __init__(self, f) -> None:
  1326. self.f = f
  1327. self.length = 0
  1328. self.sha1 = sha1(b"")
  1329. def write(self, data):
  1330. self.sha1.update(data)
  1331. self.f.write(data)
  1332. self.length += len(data)
  1333. def write_sha(self):
  1334. sha = self.sha1.digest()
  1335. assert len(sha) == 20
  1336. self.f.write(sha)
  1337. self.length += len(sha)
  1338. return sha
  1339. def close(self):
  1340. sha = self.write_sha()
  1341. self.f.close()
  1342. return sha
  1343. def offset(self):
  1344. return self.length
  1345. def tell(self):
  1346. return self.f.tell()
  1347. def pack_object_header(type_num, delta_base, size):
  1348. """Create a pack object header for the given object info.
  1349. Args:
  1350. type_num: Numeric type of the object.
  1351. delta_base: Delta base offset or ref, or None for whole objects.
  1352. size: Uncompressed object size.
  1353. Returns: A header for a packed object.
  1354. """
  1355. header = []
  1356. c = (type_num << 4) | (size & 15)
  1357. size >>= 4
  1358. while size:
  1359. header.append(c | 0x80)
  1360. c = size & 0x7F
  1361. size >>= 7
  1362. header.append(c)
  1363. if type_num == OFS_DELTA:
  1364. ret = [delta_base & 0x7F]
  1365. delta_base >>= 7
  1366. while delta_base:
  1367. delta_base -= 1
  1368. ret.insert(0, 0x80 | (delta_base & 0x7F))
  1369. delta_base >>= 7
  1370. header.extend(ret)
  1371. elif type_num == REF_DELTA:
  1372. assert len(delta_base) == 20
  1373. header += delta_base
  1374. return bytearray(header)
  1375. def pack_object_chunks(type, object, compression_level=-1):
  1376. """Generate chunks for a pack object.
  1377. Args:
  1378. type: Numeric type of the object
  1379. object: Object to write
  1380. compression_level: the zlib compression level
  1381. Returns: Chunks
  1382. """
  1383. if type in DELTA_TYPES:
  1384. delta_base, object = object
  1385. else:
  1386. delta_base = None
  1387. if isinstance(object, bytes):
  1388. object = [object]
  1389. yield bytes(pack_object_header(type, delta_base, sum(map(len, object))))
  1390. compressor = zlib.compressobj(level=compression_level)
  1391. for data in object:
  1392. yield compressor.compress(data)
  1393. yield compressor.flush()
  1394. def write_pack_object(write, type, object, sha=None, compression_level=-1):
  1395. """Write pack object to a file.
  1396. Args:
  1397. write: Write function to use
  1398. type: Numeric type of the object
  1399. object: Object to write
  1400. compression_level: the zlib compression level
  1401. Returns: Tuple with offset at which the object was written, and crc32
  1402. """
  1403. crc32 = 0
  1404. for chunk in pack_object_chunks(type, object, compression_level=compression_level):
  1405. write(chunk)
  1406. if sha is not None:
  1407. sha.update(chunk)
  1408. crc32 = binascii.crc32(chunk, crc32)
  1409. return crc32 & 0xFFFFFFFF
  1410. def write_pack(
  1411. filename,
  1412. objects: Union[Sequence[ShaFile], Sequence[Tuple[ShaFile, Optional[bytes]]]],
  1413. *,
  1414. deltify: Optional[bool] = None,
  1415. delta_window_size: Optional[int] = None,
  1416. compression_level: int = -1,
  1417. ):
  1418. """Write a new pack data file.
  1419. Args:
  1420. filename: Path to the new pack file (without .pack extension)
  1421. container: PackedObjectContainer
  1422. entries: Sequence of (object_id, path) tuples to write
  1423. delta_window_size: Delta window size
  1424. deltify: Whether to deltify pack objects
  1425. compression_level: the zlib compression level
  1426. Returns: Tuple with checksum of pack file and index file
  1427. """
  1428. with GitFile(filename + ".pack", "wb") as f:
  1429. entries, data_sum = write_pack_objects(
  1430. f.write,
  1431. objects,
  1432. delta_window_size=delta_window_size,
  1433. deltify=deltify,
  1434. compression_level=compression_level,
  1435. )
  1436. entries = sorted([(k, v[0], v[1]) for (k, v) in entries.items()])
  1437. with GitFile(filename + ".idx", "wb") as f:
  1438. return data_sum, write_pack_index_v2(f, entries, data_sum)
  1439. def pack_header_chunks(num_objects):
  1440. """Yield chunks for a pack header."""
  1441. yield b"PACK" # Pack header
  1442. yield struct.pack(b">L", 2) # Pack version
  1443. yield struct.pack(b">L", num_objects) # Number of objects in pack
  1444. def write_pack_header(write, num_objects):
  1445. """Write a pack header for the given number of objects."""
  1446. if hasattr(write, "write"):
  1447. write = write.write
  1448. warnings.warn(
  1449. "write_pack_header() now takes a write rather than file argument",
  1450. DeprecationWarning,
  1451. stacklevel=2,
  1452. )
  1453. for chunk in pack_header_chunks(num_objects):
  1454. write(chunk)
  1455. def find_reusable_deltas(
  1456. container: PackedObjectContainer,
  1457. object_ids: Set[bytes],
  1458. *,
  1459. other_haves: Optional[Set[bytes]] = None,
  1460. progress=None,
  1461. ) -> Iterator[UnpackedObject]:
  1462. if other_haves is None:
  1463. other_haves = set()
  1464. reused = 0
  1465. for i, unpacked in enumerate(
  1466. container.iter_unpacked_subset(
  1467. object_ids, allow_missing=True, convert_ofs_delta=True
  1468. )
  1469. ):
  1470. if progress is not None and i % 1000 == 0:
  1471. progress(
  1472. ("checking for reusable deltas: %d/%d\r" % (i, len(object_ids))).encode(
  1473. "utf-8"
  1474. )
  1475. )
  1476. if unpacked.pack_type_num == REF_DELTA:
  1477. hexsha = sha_to_hex(unpacked.delta_base)
  1478. if hexsha in object_ids or hexsha in other_haves:
  1479. yield unpacked
  1480. reused += 1
  1481. if progress is not None:
  1482. progress(("found %d deltas to reuse\n" % (reused,)).encode("utf-8"))
  1483. def deltify_pack_objects(
  1484. objects: Union[Iterator[bytes], Iterator[Tuple[ShaFile, Optional[bytes]]]],
  1485. *,
  1486. window_size: Optional[int] = None,
  1487. progress=None,
  1488. ) -> Iterator[UnpackedObject]:
  1489. """Generate deltas for pack objects.
  1490. Args:
  1491. objects: An iterable of (object, path) tuples to deltify.
  1492. window_size: Window size; None for default
  1493. Returns: Iterator over type_num, object id, delta_base, content
  1494. delta_base is None for full text entries
  1495. """
  1496. def objects_with_hints():
  1497. for e in objects:
  1498. if isinstance(e, ShaFile):
  1499. yield (e, (e.type_num, None))
  1500. else:
  1501. yield (e[0], (e[0].type_num, e[1]))
  1502. yield from deltas_from_sorted_objects(
  1503. sort_objects_for_delta(objects_with_hints()),
  1504. window_size=window_size,
  1505. progress=progress,
  1506. )
  1507. def sort_objects_for_delta(
  1508. objects: Union[Iterator[ShaFile], Iterator[Tuple[ShaFile, Optional[PackHint]]]],
  1509. ) -> Iterator[ShaFile]:
  1510. magic = []
  1511. for entry in objects:
  1512. if isinstance(entry, tuple):
  1513. obj, hint = entry
  1514. if hint is None:
  1515. type_num = None
  1516. path = None
  1517. else:
  1518. (type_num, path) = hint
  1519. else:
  1520. obj = entry
  1521. magic.append((type_num, path, -obj.raw_length(), obj))
  1522. # Build a list of objects ordered by the magic Linus heuristic
  1523. # This helps us find good objects to diff against us
  1524. magic.sort()
  1525. return (x[3] for x in magic)
  1526. def deltas_from_sorted_objects(
  1527. objects, window_size: Optional[int] = None, progress=None
  1528. ):
  1529. # TODO(jelmer): Use threads
  1530. if window_size is None:
  1531. window_size = DEFAULT_PACK_DELTA_WINDOW_SIZE
  1532. possible_bases: Deque[Tuple[bytes, int, List[bytes]]] = deque()
  1533. for i, o in enumerate(objects):
  1534. if progress is not None and i % 1000 == 0:
  1535. progress(("generating deltas: %d\r" % (i,)).encode("utf-8"))
  1536. raw = o.as_raw_chunks()
  1537. winner = raw
  1538. winner_len = sum(map(len, winner))
  1539. winner_base = None
  1540. for base_id, base_type_num, base in possible_bases:
  1541. if base_type_num != o.type_num:
  1542. continue
  1543. delta_len = 0
  1544. delta = []
  1545. for chunk in create_delta(base, raw):
  1546. delta_len += len(chunk)
  1547. if delta_len >= winner_len:
  1548. break
  1549. delta.append(chunk)
  1550. else:
  1551. winner_base = base_id
  1552. winner = delta
  1553. winner_len = sum(map(len, winner))
  1554. yield UnpackedObject(
  1555. o.type_num,
  1556. sha=o.sha().digest(),
  1557. delta_base=winner_base,
  1558. decomp_len=winner_len,
  1559. decomp_chunks=winner,
  1560. )
  1561. possible_bases.appendleft((o.sha().digest(), o.type_num, raw))
  1562. while len(possible_bases) > window_size:
  1563. possible_bases.pop()
  1564. def pack_objects_to_data(
  1565. objects: Union[Sequence[ShaFile], Sequence[Tuple[ShaFile, Optional[bytes]]]],
  1566. *,
  1567. deltify: Optional[bool] = None,
  1568. delta_window_size: Optional[int] = None,
  1569. ofs_delta: bool = True,
  1570. progress=None,
  1571. ) -> Tuple[int, Iterator[UnpackedObject]]:
  1572. """Create pack data from objects.
  1573. Args:
  1574. objects: Pack objects
  1575. Returns: Tuples with (type_num, hexdigest, delta base, object chunks)
  1576. """
  1577. # TODO(jelmer): support deltaifying
  1578. count = len(objects)
  1579. if deltify is None:
  1580. # PERFORMANCE/TODO(jelmer): This should be enabled but is *much* too
  1581. # slow at the moment.
  1582. deltify = False
  1583. if deltify:
  1584. return (
  1585. count,
  1586. deltify_pack_objects(
  1587. iter(objects), # type: ignore
  1588. window_size=delta_window_size,
  1589. progress=progress,
  1590. ),
  1591. )
  1592. else:
  1593. def iter_without_path():
  1594. for o in objects:
  1595. if isinstance(o, tuple):
  1596. yield full_unpacked_object(o[0])
  1597. else:
  1598. yield full_unpacked_object(o)
  1599. return (count, iter_without_path())
  1600. def generate_unpacked_objects(
  1601. container: PackedObjectContainer,
  1602. object_ids: Sequence[Tuple[ObjectID, Optional[PackHint]]],
  1603. delta_window_size: Optional[int] = None,
  1604. deltify: Optional[bool] = None,
  1605. reuse_deltas: bool = True,
  1606. ofs_delta: bool = True,
  1607. other_haves: Optional[Set[bytes]] = None,
  1608. progress=None,
  1609. ) -> Iterator[UnpackedObject]:
  1610. """Create pack data from objects.
  1611. Args:
  1612. objects: Pack objects
  1613. Returns: Tuples with (type_num, hexdigest, delta base, object chunks)
  1614. """
  1615. todo = dict(object_ids)
  1616. if reuse_deltas:
  1617. for unpack in find_reusable_deltas(
  1618. container, set(todo), other_haves=other_haves, progress=progress
  1619. ):
  1620. del todo[sha_to_hex(unpack.sha())]
  1621. yield unpack
  1622. if deltify is None:
  1623. # PERFORMANCE/TODO(jelmer): This should be enabled but is *much* too
  1624. # slow at the moment.
  1625. deltify = False
  1626. if deltify:
  1627. objects_to_delta = container.iterobjects_subset(
  1628. todo.keys(), allow_missing=False
  1629. )
  1630. yield from deltas_from_sorted_objects(
  1631. sort_objects_for_delta((o, todo[o.id]) for o in objects_to_delta),
  1632. window_size=delta_window_size,
  1633. progress=progress,
  1634. )
  1635. else:
  1636. for oid in todo:
  1637. yield full_unpacked_object(container[oid])
  1638. def full_unpacked_object(o: ShaFile) -> UnpackedObject:
  1639. return UnpackedObject(
  1640. o.type_num,
  1641. delta_base=None,
  1642. crc32=None,
  1643. decomp_chunks=o.as_raw_chunks(),
  1644. sha=o.sha().digest(),
  1645. )
  1646. def write_pack_from_container(
  1647. write,
  1648. container: PackedObjectContainer,
  1649. object_ids: Sequence[Tuple[ObjectID, Optional[PackHint]]],
  1650. delta_window_size: Optional[int] = None,
  1651. deltify: Optional[bool] = None,
  1652. reuse_deltas: bool = True,
  1653. compression_level: int = -1,
  1654. other_haves: Optional[Set[bytes]] = None,
  1655. ):
  1656. """Write a new pack data file.
  1657. Args:
  1658. write: write function to use
  1659. container: PackedObjectContainer
  1660. entries: Sequence of (object_id, path) tuples to write
  1661. delta_window_size: Sliding window size for searching for deltas;
  1662. Set to None for default window size.
  1663. deltify: Whether to deltify objects
  1664. compression_level: the zlib compression level to use
  1665. Returns: Dict mapping id -> (offset, crc32 checksum), pack checksum
  1666. """
  1667. pack_contents_count = len(object_ids)
  1668. pack_contents = generate_unpacked_objects(
  1669. container,
  1670. object_ids,
  1671. delta_window_size=delta_window_size,
  1672. deltify=deltify,
  1673. reuse_deltas=reuse_deltas,
  1674. other_haves=other_haves,
  1675. )
  1676. return write_pack_data(
  1677. write,
  1678. pack_contents,
  1679. num_records=pack_contents_count,
  1680. compression_level=compression_level,
  1681. )
  1682. def write_pack_objects(
  1683. write,
  1684. objects: Union[Sequence[ShaFile], Sequence[Tuple[ShaFile, Optional[bytes]]]],
  1685. *,
  1686. delta_window_size: Optional[int] = None,
  1687. deltify: Optional[bool] = None,
  1688. compression_level: int = -1,
  1689. ):
  1690. """Write a new pack data file.
  1691. Args:
  1692. write: write function to use
  1693. objects: Sequence of (object, path) tuples to write
  1694. delta_window_size: Sliding window size for searching for deltas;
  1695. Set to None for default window size.
  1696. deltify: Whether to deltify objects
  1697. compression_level: the zlib compression level to use
  1698. Returns: Dict mapping id -> (offset, crc32 checksum), pack checksum
  1699. """
  1700. pack_contents_count, pack_contents = pack_objects_to_data(objects, deltify=deltify)
  1701. return write_pack_data(
  1702. write,
  1703. pack_contents,
  1704. num_records=pack_contents_count,
  1705. compression_level=compression_level,
  1706. )
  1707. class PackChunkGenerator:
  1708. def __init__(
  1709. self,
  1710. num_records=None,
  1711. records=None,
  1712. progress=None,
  1713. compression_level=-1,
  1714. reuse_compressed=True,
  1715. ) -> None:
  1716. self.cs = sha1(b"")
  1717. self.entries: Dict[Union[int, bytes], Tuple[int, int]] = {}
  1718. self._it = self._pack_data_chunks(
  1719. num_records=num_records,
  1720. records=records,
  1721. progress=progress,
  1722. compression_level=compression_level,
  1723. reuse_compressed=reuse_compressed,
  1724. )
  1725. def sha1digest(self):
  1726. return self.cs.digest()
  1727. def __iter__(self):
  1728. return self._it
  1729. def _pack_data_chunks(
  1730. self,
  1731. records: Iterator[UnpackedObject],
  1732. *,
  1733. num_records=None,
  1734. progress=None,
  1735. compression_level: int = -1,
  1736. reuse_compressed: bool = True,
  1737. ) -> Iterator[bytes]:
  1738. """Iterate pack data file chunks.
  1739. Args:
  1740. records: Iterator over UnpackedObject
  1741. num_records: Number of records (defaults to len(records) if not specified)
  1742. progress: Function to report progress to
  1743. compression_level: the zlib compression level
  1744. Returns: Dict mapping id -> (offset, crc32 checksum), pack checksum
  1745. """
  1746. # Write the pack
  1747. if num_records is None:
  1748. num_records = len(records) # type: ignore
  1749. offset = 0
  1750. for chunk in pack_header_chunks(num_records):
  1751. yield chunk
  1752. self.cs.update(chunk)
  1753. offset += len(chunk)
  1754. actual_num_records = 0
  1755. for i, unpacked in enumerate(records):
  1756. type_num = unpacked.pack_type_num
  1757. if progress is not None and i % 1000 == 0:
  1758. progress(
  1759. ("writing pack data: %d/%d\r" % (i, num_records)).encode("ascii")
  1760. )
  1761. raw: Union[List[bytes], Tuple[int, List[bytes]], Tuple[bytes, List[bytes]]]
  1762. if unpacked.delta_base is not None:
  1763. try:
  1764. base_offset, base_crc32 = self.entries[unpacked.delta_base]
  1765. except KeyError:
  1766. type_num = REF_DELTA
  1767. assert isinstance(unpacked.delta_base, bytes)
  1768. raw = (unpacked.delta_base, unpacked.decomp_chunks)
  1769. else:
  1770. type_num = OFS_DELTA
  1771. raw = (offset - base_offset, unpacked.decomp_chunks)
  1772. else:
  1773. raw = unpacked.decomp_chunks
  1774. if unpacked.comp_chunks is not None and reuse_compressed:
  1775. chunks = unpacked.comp_chunks
  1776. else:
  1777. chunks = pack_object_chunks(
  1778. type_num, raw, compression_level=compression_level
  1779. )
  1780. crc32 = 0
  1781. object_size = 0
  1782. for chunk in chunks:
  1783. yield chunk
  1784. crc32 = binascii.crc32(chunk, crc32)
  1785. self.cs.update(chunk)
  1786. object_size += len(chunk)
  1787. actual_num_records += 1
  1788. self.entries[unpacked.sha()] = (offset, crc32)
  1789. offset += object_size
  1790. if actual_num_records != num_records:
  1791. raise AssertionError(
  1792. "actual records written differs: %d != %d"
  1793. % (actual_num_records, num_records)
  1794. )
  1795. yield self.cs.digest()
  1796. def write_pack_data(
  1797. write,
  1798. records: Iterator[UnpackedObject],
  1799. *,
  1800. num_records=None,
  1801. progress=None,
  1802. compression_level=-1,
  1803. ):
  1804. """Write a new pack data file.
  1805. Args:
  1806. write: Write function to use
  1807. num_records: Number of records (defaults to len(records) if None)
  1808. records: Iterator over type_num, object_id, delta_base, raw
  1809. progress: Function to report progress to
  1810. compression_level: the zlib compression level
  1811. Returns: Dict mapping id -> (offset, crc32 checksum), pack checksum
  1812. """
  1813. chunk_generator = PackChunkGenerator(
  1814. num_records=num_records,
  1815. records=records,
  1816. progress=progress,
  1817. compression_level=compression_level,
  1818. )
  1819. for chunk in chunk_generator:
  1820. write(chunk)
  1821. return chunk_generator.entries, chunk_generator.sha1digest()
  1822. def write_pack_index_v1(f, entries, pack_checksum):
  1823. """Write a new pack index file.
  1824. Args:
  1825. f: A file-like object to write to
  1826. entries: List of tuples with object name (sha), offset_in_pack,
  1827. and crc32_checksum.
  1828. pack_checksum: Checksum of the pack file.
  1829. Returns: The SHA of the written index file
  1830. """
  1831. f = SHA1Writer(f)
  1832. fan_out_table = defaultdict(lambda: 0)
  1833. for name, offset, entry_checksum in entries:
  1834. fan_out_table[ord(name[:1])] += 1
  1835. # Fan-out table
  1836. for i in range(0x100):
  1837. f.write(struct.pack(">L", fan_out_table[i]))
  1838. fan_out_table[i + 1] += fan_out_table[i]
  1839. for name, offset, entry_checksum in entries:
  1840. if not (offset <= 0xFFFFFFFF):
  1841. raise TypeError("pack format 1 only supports offsets < 2Gb")
  1842. f.write(struct.pack(">L20s", offset, name))
  1843. assert len(pack_checksum) == 20
  1844. f.write(pack_checksum)
  1845. return f.write_sha()
  1846. def _delta_encode_size(size) -> bytes:
  1847. ret = bytearray()
  1848. c = size & 0x7F
  1849. size >>= 7
  1850. while size:
  1851. ret.append(c | 0x80)
  1852. c = size & 0x7F
  1853. size >>= 7
  1854. ret.append(c)
  1855. return bytes(ret)
  1856. # The length of delta compression copy operations in version 2 packs is limited
  1857. # to 64K. To copy more, we use several copy operations. Version 3 packs allow
  1858. # 24-bit lengths in copy operations, but we always make version 2 packs.
  1859. _MAX_COPY_LEN = 0xFFFF
  1860. def _encode_copy_operation(start, length):
  1861. scratch = bytearray([0x80])
  1862. for i in range(4):
  1863. if start & 0xFF << i * 8:
  1864. scratch.append((start >> i * 8) & 0xFF)
  1865. scratch[0] |= 1 << i
  1866. for i in range(2):
  1867. if length & 0xFF << i * 8:
  1868. scratch.append((length >> i * 8) & 0xFF)
  1869. scratch[0] |= 1 << (4 + i)
  1870. return bytes(scratch)
  1871. def create_delta(base_buf, target_buf):
  1872. """Use python difflib to work out how to transform base_buf to target_buf.
  1873. Args:
  1874. base_buf: Base buffer
  1875. target_buf: Target buffer
  1876. """
  1877. if isinstance(base_buf, list):
  1878. base_buf = b"".join(base_buf)
  1879. if isinstance(target_buf, list):
  1880. target_buf = b"".join(target_buf)
  1881. assert isinstance(base_buf, bytes)
  1882. assert isinstance(target_buf, bytes)
  1883. # write delta header
  1884. yield _delta_encode_size(len(base_buf))
  1885. yield _delta_encode_size(len(target_buf))
  1886. # write out delta opcodes
  1887. seq = SequenceMatcher(isjunk=None, a=base_buf, b=target_buf)
  1888. for opcode, i1, i2, j1, j2 in seq.get_opcodes():
  1889. # Git patch opcodes don't care about deletes!
  1890. # if opcode == 'replace' or opcode == 'delete':
  1891. # pass
  1892. if opcode == "equal":
  1893. # If they are equal, unpacker will use data from base_buf
  1894. # Write out an opcode that says what range to use
  1895. copy_start = i1
  1896. copy_len = i2 - i1
  1897. while copy_len > 0:
  1898. to_copy = min(copy_len, _MAX_COPY_LEN)
  1899. yield _encode_copy_operation(copy_start, to_copy)
  1900. copy_start += to_copy
  1901. copy_len -= to_copy
  1902. if opcode == "replace" or opcode == "insert":
  1903. # If we are replacing a range or adding one, then we just
  1904. # output it to the stream (prefixed by its size)
  1905. s = j2 - j1
  1906. o = j1
  1907. while s > 127:
  1908. yield bytes([127])
  1909. yield memoryview(target_buf)[o : o + 127]
  1910. s -= 127
  1911. o += 127
  1912. yield bytes([s])
  1913. yield memoryview(target_buf)[o : o + s]
  1914. def apply_delta(src_buf, delta):
  1915. """Based on the similar function in git's patch-delta.c.
  1916. Args:
  1917. src_buf: Source buffer
  1918. delta: Delta instructions
  1919. """
  1920. if not isinstance(src_buf, bytes):
  1921. src_buf = b"".join(src_buf)
  1922. if not isinstance(delta, bytes):
  1923. delta = b"".join(delta)
  1924. out = []
  1925. index = 0
  1926. delta_length = len(delta)
  1927. def get_delta_header_size(delta, index):
  1928. size = 0
  1929. i = 0
  1930. while delta:
  1931. cmd = ord(delta[index : index + 1])
  1932. index += 1
  1933. size |= (cmd & ~0x80) << i
  1934. i += 7
  1935. if not cmd & 0x80:
  1936. break
  1937. return size, index
  1938. src_size, index = get_delta_header_size(delta, index)
  1939. dest_size, index = get_delta_header_size(delta, index)
  1940. assert src_size == len(src_buf), "%d vs %d" % (src_size, len(src_buf))
  1941. while index < delta_length:
  1942. cmd = ord(delta[index : index + 1])
  1943. index += 1
  1944. if cmd & 0x80:
  1945. cp_off = 0
  1946. for i in range(4):
  1947. if cmd & (1 << i):
  1948. x = ord(delta[index : index + 1])
  1949. index += 1
  1950. cp_off |= x << (i * 8)
  1951. cp_size = 0
  1952. # Version 3 packs can contain copy sizes larger than 64K.
  1953. for i in range(3):
  1954. if cmd & (1 << (4 + i)):
  1955. x = ord(delta[index : index + 1])
  1956. index += 1
  1957. cp_size |= x << (i * 8)
  1958. if cp_size == 0:
  1959. cp_size = 0x10000
  1960. if (
  1961. cp_off + cp_size < cp_size
  1962. or cp_off + cp_size > src_size
  1963. or cp_size > dest_size
  1964. ):
  1965. break
  1966. out.append(src_buf[cp_off : cp_off + cp_size])
  1967. elif cmd != 0:
  1968. out.append(delta[index : index + cmd])
  1969. index += cmd
  1970. else:
  1971. raise ApplyDeltaError("Invalid opcode 0")
  1972. if index != delta_length:
  1973. raise ApplyDeltaError("delta not empty: %r" % delta[index:])
  1974. if dest_size != chunks_length(out):
  1975. raise ApplyDeltaError("dest size incorrect")
  1976. return out
  1977. def write_pack_index_v2(
  1978. f, entries: Iterable[PackIndexEntry], pack_checksum: bytes
  1979. ) -> bytes:
  1980. """Write a new pack index file.
  1981. Args:
  1982. f: File-like object to write to
  1983. entries: List of tuples with object name (sha), offset_in_pack, and
  1984. crc32_checksum.
  1985. pack_checksum: Checksum of the pack file.
  1986. Returns: The SHA of the index file written
  1987. """
  1988. f = SHA1Writer(f)
  1989. f.write(b"\377tOc") # Magic!
  1990. f.write(struct.pack(">L", 2))
  1991. fan_out_table: Dict[int, int] = defaultdict(lambda: 0)
  1992. for name, offset, entry_checksum in entries:
  1993. fan_out_table[ord(name[:1])] += 1
  1994. # Fan-out table
  1995. largetable: List[int] = []
  1996. for i in range(0x100):
  1997. f.write(struct.pack(b">L", fan_out_table[i]))
  1998. fan_out_table[i + 1] += fan_out_table[i]
  1999. for name, offset, entry_checksum in entries:
  2000. f.write(name)
  2001. for name, offset, entry_checksum in entries:
  2002. f.write(struct.pack(b">L", entry_checksum))
  2003. for name, offset, entry_checksum in entries:
  2004. if offset < 2**31:
  2005. f.write(struct.pack(b">L", offset))
  2006. else:
  2007. f.write(struct.pack(b">L", 2**31 + len(largetable)))
  2008. largetable.append(offset)
  2009. for offset in largetable:
  2010. f.write(struct.pack(b">Q", offset))
  2011. assert len(pack_checksum) == 20
  2012. f.write(pack_checksum)
  2013. return f.write_sha()
  2014. write_pack_index = write_pack_index_v2
  2015. class Pack:
  2016. """A Git pack object."""
  2017. _data_load: Optional[Callable[[], PackData]]
  2018. _idx_load: Optional[Callable[[], PackIndex]]
  2019. _data: Optional[PackData]
  2020. _idx: Optional[PackIndex]
  2021. def __init__(
  2022. self, basename, resolve_ext_ref: Optional[ResolveExtRefFn] = None
  2023. ) -> None:
  2024. self._basename = basename
  2025. self._data = None
  2026. self._idx = None
  2027. self._idx_path = self._basename + ".idx"
  2028. self._data_path = self._basename + ".pack"
  2029. self._data_load = lambda: PackData(self._data_path)
  2030. self._idx_load = lambda: load_pack_index(self._idx_path)
  2031. self.resolve_ext_ref = resolve_ext_ref
  2032. @classmethod
  2033. def from_lazy_objects(cls, data_fn, idx_fn):
  2034. """Create a new pack object from callables to load pack data and
  2035. index objects.
  2036. """
  2037. ret = cls("")
  2038. ret._data_load = data_fn
  2039. ret._idx_load = idx_fn
  2040. return ret
  2041. @classmethod
  2042. def from_objects(cls, data, idx):
  2043. """Create a new pack object from pack data and index objects."""
  2044. ret = cls("")
  2045. ret._data = data
  2046. ret._data_load = None
  2047. ret._idx = idx
  2048. ret._idx_load = None
  2049. ret.check_length_and_checksum()
  2050. return ret
  2051. def name(self):
  2052. """The SHA over the SHAs of the objects in this pack."""
  2053. return self.index.objects_sha1()
  2054. @property
  2055. def data(self) -> PackData:
  2056. """The pack data object being used."""
  2057. if self._data is None:
  2058. assert self._data_load
  2059. self._data = self._data_load()
  2060. self.check_length_and_checksum()
  2061. return self._data
  2062. @property
  2063. def index(self) -> PackIndex:
  2064. """The index being used.
  2065. Note: This may be an in-memory index
  2066. """
  2067. if self._idx is None:
  2068. assert self._idx_load
  2069. self._idx = self._idx_load()
  2070. return self._idx
  2071. def close(self):
  2072. if self._data is not None:
  2073. self._data.close()
  2074. if self._idx is not None:
  2075. self._idx.close()
  2076. def __enter__(self):
  2077. return self
  2078. def __exit__(self, exc_type, exc_val, exc_tb):
  2079. self.close()
  2080. def __eq__(self, other):
  2081. return isinstance(self, type(other)) and self.index == other.index
  2082. def __len__(self) -> int:
  2083. """Number of entries in this pack."""
  2084. return len(self.index)
  2085. def __repr__(self) -> str:
  2086. return f"{self.__class__.__name__}({self._basename!r})"
  2087. def __iter__(self):
  2088. """Iterate over all the sha1s of the objects in this pack."""
  2089. return iter(self.index)
  2090. def check_length_and_checksum(self) -> None:
  2091. """Sanity check the length and checksum of the pack index and data."""
  2092. assert len(self.index) == len(
  2093. self.data
  2094. ), f"Length mismatch: {len(self.index)} (index) != {len(self.data)} (data)"
  2095. idx_stored_checksum = self.index.get_pack_checksum()
  2096. data_stored_checksum = self.data.get_stored_checksum()
  2097. if idx_stored_checksum != data_stored_checksum:
  2098. raise ChecksumMismatch(
  2099. sha_to_hex(idx_stored_checksum),
  2100. sha_to_hex(data_stored_checksum),
  2101. )
  2102. def check(self) -> None:
  2103. """Check the integrity of this pack.
  2104. Raises:
  2105. ChecksumMismatch: if a checksum for the index or data is wrong
  2106. """
  2107. self.index.check()
  2108. self.data.check()
  2109. for obj in self.iterobjects():
  2110. obj.check()
  2111. # TODO: object connectivity checks
  2112. def get_stored_checksum(self) -> bytes:
  2113. return self.data.get_stored_checksum()
  2114. def pack_tuples(self):
  2115. return [(o, None) for o in self.iterobjects()]
  2116. def __contains__(self, sha1: bytes) -> bool:
  2117. """Check whether this pack contains a particular SHA1."""
  2118. try:
  2119. self.index.object_offset(sha1)
  2120. return True
  2121. except KeyError:
  2122. return False
  2123. def get_raw(self, sha1: bytes) -> Tuple[int, bytes]:
  2124. offset = self.index.object_offset(sha1)
  2125. obj_type, obj = self.data.get_object_at(offset)
  2126. type_num, chunks = self.resolve_object(offset, obj_type, obj)
  2127. return type_num, b"".join(chunks)
  2128. def __getitem__(self, sha1: bytes) -> ShaFile:
  2129. """Retrieve the specified SHA1."""
  2130. type, uncomp = self.get_raw(sha1)
  2131. return ShaFile.from_raw_string(type, uncomp, sha=sha1)
  2132. def iterobjects(self) -> Iterator[ShaFile]:
  2133. """Iterate over the objects in this pack."""
  2134. return iter(
  2135. PackInflater.for_pack_data(self.data, resolve_ext_ref=self.resolve_ext_ref)
  2136. )
  2137. def iterobjects_subset(
  2138. self, shas: Iterable[ObjectID], *, allow_missing: bool = False
  2139. ) -> Iterator[ShaFile]:
  2140. return (
  2141. uo
  2142. for uo in PackInflater.for_pack_subset(
  2143. self,
  2144. shas,
  2145. allow_missing=allow_missing,
  2146. resolve_ext_ref=self.resolve_ext_ref,
  2147. )
  2148. if uo.id in shas
  2149. )
  2150. def iter_unpacked_subset(
  2151. self,
  2152. shas: Iterable[ObjectID],
  2153. *,
  2154. include_comp: bool = False,
  2155. allow_missing: bool = False,
  2156. convert_ofs_delta: bool = False,
  2157. ) -> Iterator[UnpackedObject]:
  2158. ofs_pending: Dict[int, List[UnpackedObject]] = defaultdict(list)
  2159. ofs: Dict[bytes, int] = {}
  2160. todo = set(shas)
  2161. for unpacked in self.iter_unpacked(include_comp=include_comp):
  2162. sha = unpacked.sha()
  2163. ofs[unpacked.offset] = sha
  2164. hexsha = sha_to_hex(sha)
  2165. if hexsha in todo:
  2166. if unpacked.pack_type_num == OFS_DELTA:
  2167. assert isinstance(unpacked.delta_base, int)
  2168. base_offset = unpacked.offset - unpacked.delta_base
  2169. try:
  2170. unpacked.delta_base = ofs[base_offset]
  2171. except KeyError:
  2172. ofs_pending[base_offset].append(unpacked)
  2173. continue
  2174. else:
  2175. unpacked.pack_type_num = REF_DELTA
  2176. yield unpacked
  2177. todo.remove(hexsha)
  2178. for child in ofs_pending.pop(unpacked.offset, []):
  2179. child.pack_type_num = REF_DELTA
  2180. child.delta_base = sha
  2181. yield child
  2182. assert not ofs_pending
  2183. if not allow_missing and todo:
  2184. raise UnresolvedDeltas(todo)
  2185. def iter_unpacked(self, include_comp=False):
  2186. ofs_to_entries = {
  2187. ofs: (sha, crc32) for (sha, ofs, crc32) in self.index.iterentries()
  2188. }
  2189. for unpacked in self.data.iter_unpacked(include_comp=include_comp):
  2190. (sha, crc32) = ofs_to_entries[unpacked.offset]
  2191. unpacked._sha = sha
  2192. unpacked.crc32 = crc32
  2193. yield unpacked
  2194. def keep(self, msg: Optional[bytes] = None) -> str:
  2195. """Add a .keep file for the pack, preventing git from garbage collecting it.
  2196. Args:
  2197. msg: A message written inside the .keep file; can be used later
  2198. to determine whether or not a .keep file is obsolete.
  2199. Returns: The path of the .keep file, as a string.
  2200. """
  2201. keepfile_name = "%s.keep" % self._basename
  2202. with GitFile(keepfile_name, "wb") as keepfile:
  2203. if msg:
  2204. keepfile.write(msg)
  2205. keepfile.write(b"\n")
  2206. return keepfile_name
  2207. def get_ref(self, sha: bytes) -> Tuple[Optional[int], int, OldUnpackedObject]:
  2208. """Get the object for a ref SHA, only looking in this pack."""
  2209. # TODO: cache these results
  2210. try:
  2211. offset = self.index.object_offset(sha)
  2212. except KeyError:
  2213. offset = None
  2214. if offset:
  2215. type, obj = self.data.get_object_at(offset)
  2216. elif self.resolve_ext_ref:
  2217. type, obj = self.resolve_ext_ref(sha)
  2218. else:
  2219. raise KeyError(sha)
  2220. return offset, type, obj
  2221. def resolve_object(
  2222. self, offset: int, type: int, obj, get_ref=None
  2223. ) -> Tuple[int, Iterable[bytes]]:
  2224. """Resolve an object, possibly resolving deltas when necessary.
  2225. Returns: Tuple with object type and contents.
  2226. """
  2227. # Walk down the delta chain, building a stack of deltas to reach
  2228. # the requested object.
  2229. base_offset = offset
  2230. base_type = type
  2231. base_obj = obj
  2232. delta_stack = []
  2233. while base_type in DELTA_TYPES:
  2234. prev_offset = base_offset
  2235. if get_ref is None:
  2236. get_ref = self.get_ref
  2237. if base_type == OFS_DELTA:
  2238. (delta_offset, delta) = base_obj
  2239. # TODO: clean up asserts and replace with nicer error messages
  2240. base_offset = base_offset - delta_offset
  2241. base_type, base_obj = self.data.get_object_at(base_offset)
  2242. assert isinstance(base_type, int)
  2243. elif base_type == REF_DELTA:
  2244. (basename, delta) = base_obj
  2245. assert isinstance(basename, bytes) and len(basename) == 20
  2246. base_offset, base_type, base_obj = get_ref(basename)
  2247. assert isinstance(base_type, int)
  2248. delta_stack.append((prev_offset, base_type, delta))
  2249. # Now grab the base object (mustn't be a delta) and apply the
  2250. # deltas all the way up the stack.
  2251. chunks = base_obj
  2252. for prev_offset, delta_type, delta in reversed(delta_stack):
  2253. chunks = apply_delta(chunks, delta)
  2254. # TODO(dborowitz): This can result in poor performance if
  2255. # large base objects are separated from deltas in the pack.
  2256. # We should reorganize so that we apply deltas to all
  2257. # objects in a chain one after the other to optimize cache
  2258. # performance.
  2259. if prev_offset is not None:
  2260. self.data._offset_cache[prev_offset] = base_type, chunks
  2261. return base_type, chunks
  2262. def entries(
  2263. self, progress: Optional[ProgressFn] = None
  2264. ) -> Iterator[PackIndexEntry]:
  2265. """Yield entries summarizing the contents of this pack.
  2266. Args:
  2267. progress: Progress function, called with current and total
  2268. object count.
  2269. Returns: iterator of tuples with (sha, offset, crc32)
  2270. """
  2271. return self.data.iterentries(
  2272. progress=progress, resolve_ext_ref=self.resolve_ext_ref
  2273. )
  2274. def sorted_entries(
  2275. self, progress: Optional[ProgressFn] = None
  2276. ) -> Iterator[PackIndexEntry]:
  2277. """Return entries in this pack, sorted by SHA.
  2278. Args:
  2279. progress: Progress function, called with current and total
  2280. object count
  2281. Returns: Iterator of tuples with (sha, offset, crc32)
  2282. """
  2283. return self.data.sorted_entries(
  2284. progress=progress, resolve_ext_ref=self.resolve_ext_ref
  2285. )
  2286. def get_unpacked_object(
  2287. self, sha: bytes, *, include_comp: bool = False, convert_ofs_delta: bool = True
  2288. ) -> UnpackedObject:
  2289. """Get the unpacked object for a sha.
  2290. Args:
  2291. sha: SHA of object to fetch
  2292. include_comp: Whether to include compression data in UnpackedObject
  2293. """
  2294. offset = self.index.object_offset(sha)
  2295. unpacked = self.data.get_unpacked_object_at(offset, include_comp=include_comp)
  2296. if unpacked.pack_type_num == OFS_DELTA and convert_ofs_delta:
  2297. assert isinstance(unpacked.delta_base, int)
  2298. unpacked.delta_base = self.index.object_sha1(offset - unpacked.delta_base)
  2299. unpacked.pack_type_num = REF_DELTA
  2300. return unpacked
  2301. def extend_pack(
  2302. f: BinaryIO,
  2303. object_ids: Set[ObjectID],
  2304. get_raw,
  2305. *,
  2306. compression_level=-1,
  2307. progress=None,
  2308. ) -> Tuple[bytes, List]:
  2309. """Extend a pack file with more objects.
  2310. The caller should make sure that object_ids does not contain any objects
  2311. that are already in the pack
  2312. """
  2313. # Update the header with the new number of objects.
  2314. f.seek(0)
  2315. _version, num_objects = read_pack_header(f.read)
  2316. if object_ids:
  2317. f.seek(0)
  2318. write_pack_header(f.write, num_objects + len(object_ids))
  2319. # Must flush before reading (http://bugs.python.org/issue3207)
  2320. f.flush()
  2321. # Rescan the rest of the pack, computing the SHA with the new header.
  2322. new_sha = compute_file_sha(f, end_ofs=-20)
  2323. # Must reposition before writing (http://bugs.python.org/issue3207)
  2324. f.seek(0, os.SEEK_CUR)
  2325. extra_entries = []
  2326. # Complete the pack.
  2327. for i, object_id in enumerate(object_ids):
  2328. if progress is not None:
  2329. progress(
  2330. ("writing extra base objects: %d/%d\r" % (i, len(object_ids))).encode(
  2331. "ascii"
  2332. )
  2333. )
  2334. assert len(object_id) == 20
  2335. type_num, data = get_raw(object_id)
  2336. offset = f.tell()
  2337. crc32 = write_pack_object(
  2338. f.write,
  2339. type_num,
  2340. data,
  2341. sha=new_sha,
  2342. compression_level=compression_level,
  2343. )
  2344. extra_entries.append((object_id, offset, crc32))
  2345. pack_sha = new_sha.digest()
  2346. f.write(pack_sha)
  2347. return pack_sha, extra_entries
  2348. try:
  2349. from dulwich._pack import ( # type: ignore
  2350. apply_delta, # type: ignore
  2351. bisect_find_sha, # type: ignore
  2352. )
  2353. except ImportError:
  2354. pass