pack.py 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. # pack.py -- For dealing wih packed git objects.
  2. # Copyright (C) 2007 James Westby <jw+debian@jameswestby.net>
  3. # The code is loosely based on that in the sha1_file.c file from git itself,
  4. # which is Copyright (C) Linus Torvalds, 2005 and distributed under the
  5. # GPL version 2.
  6. #
  7. # This program is free software; you can redistribute it and/or
  8. # modify it under the terms of the GNU General Public License
  9. # as published by the Free Software Foundation; version 2
  10. # of the License.
  11. #
  12. # This program is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. # GNU General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU General Public License
  18. # along with this program; if not, write to the Free Software
  19. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  20. # MA 02110-1301, USA.
  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 mmap
  31. import os
  32. import sys
  33. supports_mmap_offset = (sys.version_info[0] >= 3 or
  34. (sys.version_info[0] == 2 and sys.version_info[1] >= 6))
  35. from objects import (ShaFile,
  36. _decompress,
  37. )
  38. hex_to_sha = lambda hex: int(hex, 16)
  39. def simple_mmap(f, offset, size, access=mmap.ACCESS_READ):
  40. if offset+size > MAX_MMAP_SIZE and not supports_mmap_offset:
  41. raise AssertionError("%s is larger than 256 meg, and this version "
  42. "of Python does not support the offset argument to mmap().")
  43. if supports_mmap_offset:
  44. return mmap.mmap(f.fileno(), size, access=access, offset=offset)
  45. else:
  46. class ArraySkipper(object):
  47. def __init__(self, array, offset):
  48. self.array = array
  49. self.offset = offset
  50. def __getslice__(self, i, j):
  51. return self.array[i+self.offset:j+self.offset]
  52. def __getitem__(self, i):
  53. return self.array[i+self.offset]
  54. mem = mmap.mmap(f.fileno(), size, access=access)
  55. if offset == 0:
  56. return mem
  57. return ArraySkipper(mem, offset)
  58. def multi_ord(map, start, count):
  59. value = 0
  60. for i in range(count):
  61. value = value * 256 + ord(map[start+i])
  62. return value
  63. MAX_MMAP_SIZE = 256 * 1024 * 1024
  64. class PackIndex(object):
  65. """An index in to a packfile.
  66. Given a sha id of an object a pack index can tell you the location in the
  67. packfile of that object if it has it.
  68. To do the looup it opens the file, and indexes first 256 4 byte groups
  69. with the first byte of the sha id. The value in the four byte group indexed
  70. is the end of the group that shares the same starting byte. Subtract one
  71. from the starting byte and index again to find the start of the group.
  72. The values are sorted by sha id within the group, so do the math to find
  73. the start and end offset and then bisect in to find if the value is present.
  74. """
  75. header_record_size = 4
  76. header_size = 256 * header_record_size
  77. index_size = 4
  78. sha_bytes = 20
  79. record_size = sha_bytes + index_size
  80. def __init__(self, filename):
  81. """Create a pack index object.
  82. Provide it with the name of the index file to consider, and it will map
  83. it whenever required.
  84. """
  85. self._filename = filename
  86. assert os.path.exists(filename), "%s is not a pack index" % filename
  87. # Take the size now, so it can be checked each time we map the file to
  88. # ensure that it hasn't changed.
  89. self._size = os.path.getsize(filename)
  90. assert self._size > self.header_size, "%s is too small to be a packfile" % \
  91. filename
  92. def object_index(self, sha):
  93. """Return the index in to the corresponding packfile for the object.
  94. Given the name of an object it will return the offset that object lives
  95. at within the corresponding pack file. If the pack file doesn't have the
  96. object then None will be returned.
  97. """
  98. size = os.path.getsize(self._filename)
  99. assert size == self._size, "Pack index %s has changed size, I don't " \
  100. "like that" % self._filename
  101. f = open(self._filename, 'rb')
  102. try:
  103. map = simple_mmap(f, 0, size)
  104. return self._object_index(map, sha)
  105. finally:
  106. f.close()
  107. def _object_index(self, map, hexsha):
  108. """See object_index"""
  109. first_byte = hex_to_sha(hexsha[:2])
  110. header_offset = self.header_record_size * first_byte
  111. start = multi_ord(map, header_offset-self.header_record_size, self.header_record_size)
  112. end = multi_ord(map, header_offset, self.header_record_size)
  113. sha = hex_to_sha(hexsha)
  114. while start < end:
  115. i = (start + end)/2
  116. offset = self.header_size + (i * self.record_size)
  117. file_sha = multi_ord(map, offset + self.index_size, self.sha_bytes)
  118. if file_sha == sha:
  119. return multi_ord(map, offset, self.index_size)
  120. elif file_sha < sha:
  121. start = offset + 1
  122. else:
  123. end = offset - 1
  124. return None
  125. class PackData(object):
  126. """The data contained in a packfile.
  127. Pack files can be accessed both sequentially for exploding a pack, and
  128. directly with the help of an index to retrieve a specific object.
  129. The objects within are either complete or a delta aginst another.
  130. The header is variable length. If the MSB of each byte is set then it
  131. indicates that the subsequent byte is still part of the header.
  132. For the first byte the next MS bits are the type, which tells you the type
  133. of object, and whether it is a delta. The LS byte is the lowest bits of the
  134. size. For each subsequent byte the LS 7 bits are the next MS bits of the
  135. size, i.e. the last byte of the header contains the MS bits of the size.
  136. For the complete objects the data is stored as zlib deflated data.
  137. The size in the header is the uncompressed object size, so to uncompress
  138. you need to just keep feeding data to zlib until you get an object back,
  139. or it errors on bad data. This is done here by just giving the complete
  140. buffer from the start of the deflated object on. This is bad, but until I
  141. get mmap sorted out it will have to do.
  142. Currently there are no integrity checks done. Also no attempt is made to try
  143. and detect the delta case, or a request for an object at the wrong position.
  144. It will all just throw a zlib or KeyError.
  145. """
  146. def __init__(self, filename):
  147. """Create a PackData object that represents the pack in the given filename.
  148. The file must exist and stay readable until the object is disposed of. It
  149. must also stay the same size. It will be mapped whenever needed.
  150. Currently there is a restriction on the size of the pack as the python
  151. mmap implementation is flawed.
  152. """
  153. self._filename = filename
  154. assert os.path.exists(filename), "%s is not a packfile" % filename
  155. self._size = os.path.getsize(filename)
  156. def get_object_at(self, offset):
  157. """Given an offset in to the packfile return the object that is there.
  158. Using the associated index the location of an object can be looked up, and
  159. then the packfile can be asked directly for that object using this
  160. function.
  161. Currently only non-delta objects are supported.
  162. """
  163. size = os.path.getsize(self._filename)
  164. assert size == self._size, "Pack data %s has changed size, I don't " \
  165. "like that" % self._filename
  166. f = open(self._filename, 'rb')
  167. try:
  168. map = simple_mmap(f, offset, size)
  169. return self._get_object_at(map)
  170. finally:
  171. f.close()
  172. def _get_object_at(self, map):
  173. first_byte = ord(map[0])
  174. sign_extend = first_byte & 0x80
  175. type = (first_byte >> 4) & 0x07
  176. size = first_byte & 0x0f
  177. cur_offset = 0
  178. while sign_extend > 0:
  179. byte = ord(map[cur_offset+1])
  180. sign_extend = byte & 0x80
  181. size_part = byte & 0x7f
  182. size += size_part << ((cur_offset * 7) + 4)
  183. cur_offset += 1
  184. raw_base = cur_offset+1
  185. # The size is the inflated size, so we have no idea what the deflated size
  186. # is, so for now give it as much as we have. It should really iterate
  187. # feeding it more data if it doesn't decompress, but as we have the whole
  188. # thing then just use it.
  189. raw = map[raw_base:]
  190. uncomp = _decompress(raw)
  191. obj = ShaFile.from_raw_string(type, uncomp)
  192. return obj