object_store.py 44 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334
  1. # object_store.py -- Object store for git objects
  2. # Copyright (C) 2008-2013 Jelmer Vernooij <jelmer@jelmer.uk>
  3. # and others
  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. """Git object store interfaces and implementation."""
  22. from io import BytesIO
  23. import errno
  24. from itertools import chain
  25. import os
  26. import stat
  27. import sys
  28. import tempfile
  29. import time
  30. from dulwich.diff_tree import (
  31. tree_changes,
  32. walk_trees,
  33. )
  34. from dulwich.errors import (
  35. NotTreeError,
  36. )
  37. from dulwich.file import GitFile
  38. from dulwich.objects import (
  39. Commit,
  40. ShaFile,
  41. Tag,
  42. Tree,
  43. ZERO_SHA,
  44. hex_to_sha,
  45. sha_to_hex,
  46. hex_to_filename,
  47. S_ISGITLINK,
  48. object_class,
  49. )
  50. from dulwich.pack import (
  51. Pack,
  52. PackData,
  53. PackInflater,
  54. iter_sha1,
  55. pack_objects_to_data,
  56. write_pack_header,
  57. write_pack_index_v2,
  58. write_pack_data,
  59. write_pack_object,
  60. compute_file_sha,
  61. PackIndexer,
  62. PackStreamCopier,
  63. )
  64. from dulwich.refs import ANNOTATED_TAG_SUFFIX
  65. INFODIR = 'info'
  66. PACKDIR = 'pack'
  67. class BaseObjectStore(object):
  68. """Object store interface."""
  69. def determine_wants_all(self, refs):
  70. return [sha for (ref, sha) in refs.items()
  71. if sha not in self and
  72. not ref.endswith(ANNOTATED_TAG_SUFFIX) and
  73. not sha == ZERO_SHA]
  74. def iter_shas(self, shas):
  75. """Iterate over the objects for the specified shas.
  76. :param shas: Iterable object with SHAs
  77. :return: Object iterator
  78. """
  79. return ObjectStoreIterator(self, shas)
  80. def contains_loose(self, sha):
  81. """Check if a particular object is present by SHA1 and is loose."""
  82. raise NotImplementedError(self.contains_loose)
  83. def contains_packed(self, sha):
  84. """Check if a particular object is present by SHA1 and is packed."""
  85. raise NotImplementedError(self.contains_packed)
  86. def __contains__(self, sha):
  87. """Check if a particular object is present by SHA1.
  88. This method makes no distinction between loose and packed objects.
  89. """
  90. return self.contains_packed(sha) or self.contains_loose(sha)
  91. @property
  92. def packs(self):
  93. """Iterable of pack objects."""
  94. raise NotImplementedError
  95. def get_raw(self, name):
  96. """Obtain the raw text for an object.
  97. :param name: sha for the object.
  98. :return: tuple with numeric type and object contents.
  99. """
  100. raise NotImplementedError(self.get_raw)
  101. def __getitem__(self, sha):
  102. """Obtain an object by SHA1."""
  103. type_num, uncomp = self.get_raw(sha)
  104. return ShaFile.from_raw_string(type_num, uncomp, sha=sha)
  105. def __iter__(self):
  106. """Iterate over the SHAs that are present in this store."""
  107. raise NotImplementedError(self.__iter__)
  108. def add_object(self, obj):
  109. """Add a single object to this object store.
  110. """
  111. raise NotImplementedError(self.add_object)
  112. def add_objects(self, objects, progress=None):
  113. """Add a set of objects to this object store.
  114. :param objects: Iterable over a list of (object, path) tuples
  115. """
  116. raise NotImplementedError(self.add_objects)
  117. def add_pack_data(self, count, pack_data, progress=None):
  118. """Add pack data to this object store.
  119. :param num_items: Number of items to add
  120. :param pack_data: Iterator over pack data tuples
  121. """
  122. if count == 0:
  123. # Don't bother writing an empty pack file
  124. return
  125. f, commit, abort = self.add_pack()
  126. try:
  127. write_pack_data(f, count, pack_data, progress)
  128. except BaseException:
  129. abort()
  130. raise
  131. else:
  132. return commit()
  133. def tree_changes(self, source, target, want_unchanged=False,
  134. include_trees=False, change_type_same=False):
  135. """Find the differences between the contents of two trees
  136. :param source: SHA1 of the source tree
  137. :param target: SHA1 of the target tree
  138. :param want_unchanged: Whether unchanged files should be reported
  139. :param include_trees: Whether to include trees
  140. :param change_type_same: Whether to report files changing
  141. type in the same entry.
  142. :return: Iterator over tuples with
  143. (oldpath, newpath), (oldmode, newmode), (oldsha, newsha)
  144. """
  145. for change in tree_changes(self, source, target,
  146. want_unchanged=want_unchanged,
  147. include_trees=include_trees,
  148. change_type_same=change_type_same):
  149. yield ((change.old.path, change.new.path),
  150. (change.old.mode, change.new.mode),
  151. (change.old.sha, change.new.sha))
  152. def iter_tree_contents(self, tree_id, include_trees=False):
  153. """Iterate the contents of a tree and all subtrees.
  154. Iteration is depth-first pre-order, as in e.g. os.walk.
  155. :param tree_id: SHA1 of the tree.
  156. :param include_trees: If True, include tree objects in the iteration.
  157. :return: Iterator over TreeEntry namedtuples for all the objects in a
  158. tree.
  159. """
  160. for entry, _ in walk_trees(self, tree_id, None):
  161. if ((entry.mode is not None and
  162. not stat.S_ISDIR(entry.mode)) or include_trees):
  163. yield entry
  164. def find_missing_objects(self, haves, wants, progress=None,
  165. get_tagged=None,
  166. get_parents=lambda commit: commit.parents,
  167. depth=None):
  168. """Find the missing objects required for a set of revisions.
  169. :param haves: Iterable over SHAs already in common.
  170. :param wants: Iterable over SHAs of objects to fetch.
  171. :param progress: Simple progress function that will be called with
  172. updated progress strings.
  173. :param get_tagged: Function that returns a dict of pointed-to sha ->
  174. tag sha for including tags.
  175. :param get_parents: Optional function for getting the parents of a
  176. commit.
  177. :return: Iterator over (sha, path) pairs.
  178. """
  179. finder = MissingObjectFinder(self, haves, wants, progress, get_tagged,
  180. get_parents=get_parents)
  181. return iter(finder.next, None)
  182. def find_common_revisions(self, graphwalker):
  183. """Find which revisions this store has in common using graphwalker.
  184. :param graphwalker: A graphwalker object.
  185. :return: List of SHAs that are in common
  186. """
  187. haves = []
  188. sha = next(graphwalker)
  189. while sha:
  190. if sha in self:
  191. haves.append(sha)
  192. graphwalker.ack(sha)
  193. sha = next(graphwalker)
  194. return haves
  195. def generate_pack_contents(self, have, want, progress=None):
  196. """Iterate over the contents of a pack file.
  197. :param have: List of SHA1s of objects that should not be sent
  198. :param want: List of SHA1s of objects that should be sent
  199. :param progress: Optional progress reporting method
  200. """
  201. return self.iter_shas(self.find_missing_objects(have, want, progress))
  202. def generate_pack_data(self, have, want, progress=None, ofs_delta=True):
  203. """Generate pack data objects for a set of wants/haves.
  204. :param have: List of SHA1s of objects that should not be sent
  205. :param want: List of SHA1s of objects that should be sent
  206. :param ofs_delta: Whether OFS deltas can be included
  207. :param progress: Optional progress reporting method
  208. """
  209. # TODO(jelmer): More efficient implementation
  210. return pack_objects_to_data(
  211. self.generate_pack_contents(have, want, progress))
  212. def peel_sha(self, sha):
  213. """Peel all tags from a SHA.
  214. :param sha: The object SHA to peel.
  215. :return: The fully-peeled SHA1 of a tag object, after peeling all
  216. intermediate tags; if the original ref does not point to a tag,
  217. this will equal the original SHA1.
  218. """
  219. obj = self[sha]
  220. obj_class = object_class(obj.type_name)
  221. while obj_class is Tag:
  222. obj_class, sha = obj.object
  223. obj = self[sha]
  224. return obj
  225. def _collect_ancestors(self, heads, common=set(),
  226. get_parents=lambda commit: commit.parents):
  227. """Collect all ancestors of heads up to (excluding) those in common.
  228. :param heads: commits to start from
  229. :param common: commits to end at, or empty set to walk repository
  230. completely
  231. :param get_parents: Optional function for getting the parents of a
  232. commit.
  233. :return: a tuple (A, B) where A - all commits reachable
  234. from heads but not present in common, B - common (shared) elements
  235. that are directly reachable from heads
  236. """
  237. bases = set()
  238. commits = set()
  239. queue = []
  240. queue.extend(heads)
  241. while queue:
  242. e = queue.pop(0)
  243. if e in common:
  244. bases.add(e)
  245. elif e not in commits:
  246. commits.add(e)
  247. cmt = self[e]
  248. queue.extend(get_parents(cmt))
  249. return (commits, bases)
  250. def close(self):
  251. """Close any files opened by this object store."""
  252. # Default implementation is a NO-OP
  253. class PackBasedObjectStore(BaseObjectStore):
  254. def __init__(self):
  255. self._pack_cache = {}
  256. @property
  257. def alternates(self):
  258. return []
  259. def contains_packed(self, sha):
  260. """Check if a particular object is present by SHA1 and is packed.
  261. This does not check alternates.
  262. """
  263. for pack in self.packs:
  264. if sha in pack:
  265. return True
  266. return False
  267. def __contains__(self, sha):
  268. """Check if a particular object is present by SHA1.
  269. This method makes no distinction between loose and packed objects.
  270. """
  271. if self.contains_packed(sha) or self.contains_loose(sha):
  272. return True
  273. for alternate in self.alternates:
  274. if sha in alternate:
  275. return True
  276. return False
  277. def _pack_cache_stale(self):
  278. """Check whether the pack cache is stale."""
  279. raise NotImplementedError(self._pack_cache_stale)
  280. def _add_known_pack(self, base_name, pack):
  281. """Add a newly appeared pack to the cache by path.
  282. """
  283. prev_pack = self._pack_cache.get(base_name)
  284. if prev_pack is not pack:
  285. self._pack_cache[base_name] = pack
  286. if prev_pack:
  287. prev_pack.close()
  288. def _flush_pack_cache(self):
  289. pack_cache = self._pack_cache
  290. self._pack_cache = {}
  291. while pack_cache:
  292. (name, pack) = pack_cache.popitem()
  293. pack.close()
  294. def close(self):
  295. self._flush_pack_cache()
  296. @property
  297. def packs(self):
  298. """List with pack objects."""
  299. if self._pack_cache is None or self._pack_cache_stale():
  300. self._update_pack_cache()
  301. return self._pack_cache.values()
  302. def _iter_alternate_objects(self):
  303. """Iterate over the SHAs of all the objects in alternate stores."""
  304. for alternate in self.alternates:
  305. for alternate_object in alternate:
  306. yield alternate_object
  307. def _iter_loose_objects(self):
  308. """Iterate over the SHAs of all loose objects."""
  309. raise NotImplementedError(self._iter_loose_objects)
  310. def _get_loose_object(self, sha):
  311. raise NotImplementedError(self._get_loose_object)
  312. def _remove_loose_object(self, sha):
  313. raise NotImplementedError(self._remove_loose_object)
  314. def _remove_pack(self, name):
  315. raise NotImplementedError(self._remove_pack)
  316. def pack_loose_objects(self):
  317. """Pack loose objects.
  318. :return: Number of objects packed
  319. """
  320. objects = set()
  321. for sha in self._iter_loose_objects():
  322. objects.add((self._get_loose_object(sha), None))
  323. self.add_objects(list(objects))
  324. for obj, path in objects:
  325. self._remove_loose_object(obj.id)
  326. return len(objects)
  327. def repack(self):
  328. """Repack the packs in this repository.
  329. Note that this implementation is fairly naive and currently keeps all
  330. objects in memory while it repacks.
  331. """
  332. loose_objects = set()
  333. for sha in self._iter_loose_objects():
  334. loose_objects.add(self._get_loose_object(sha))
  335. objects = {(obj, None) for obj in loose_objects}
  336. old_packs = {p.name(): p for p in self.packs}
  337. for name, pack in old_packs.items():
  338. objects.update((obj, None) for obj in pack.iterobjects())
  339. self._flush_pack_cache()
  340. # The name of the consolidated pack might match the name of a
  341. # pre-existing pack. Take care not to remove the newly created
  342. # consolidated pack.
  343. consolidated = self.add_objects(objects)
  344. old_packs.pop(consolidated.name(), None)
  345. for obj in loose_objects:
  346. self._remove_loose_object(obj.id)
  347. for name, pack in old_packs.items():
  348. self._remove_pack(pack)
  349. self._update_pack_cache()
  350. return len(objects)
  351. def __iter__(self):
  352. """Iterate over the SHAs that are present in this store."""
  353. iterables = (list(self.packs) + [self._iter_loose_objects()] +
  354. [self._iter_alternate_objects()])
  355. return chain(*iterables)
  356. def contains_loose(self, sha):
  357. """Check if a particular object is present by SHA1 and is loose.
  358. This does not check alternates.
  359. """
  360. return self._get_loose_object(sha) is not None
  361. def get_raw(self, name):
  362. """Obtain the raw fulltext for an object.
  363. :param name: sha for the object.
  364. :return: tuple with numeric type and object contents.
  365. """
  366. if len(name) == 40:
  367. sha = hex_to_sha(name)
  368. hexsha = name
  369. elif len(name) == 20:
  370. sha = name
  371. hexsha = None
  372. else:
  373. raise AssertionError("Invalid object name %r" % name)
  374. for pack in self.packs:
  375. try:
  376. return pack.get_raw(sha)
  377. except KeyError:
  378. pass
  379. if hexsha is None:
  380. hexsha = sha_to_hex(name)
  381. ret = self._get_loose_object(hexsha)
  382. if ret is not None:
  383. return ret.type_num, ret.as_raw_string()
  384. for alternate in self.alternates:
  385. try:
  386. return alternate.get_raw(hexsha)
  387. except KeyError:
  388. pass
  389. raise KeyError(hexsha)
  390. def add_objects(self, objects, progress=None):
  391. """Add a set of objects to this object store.
  392. :param objects: Iterable over (object, path) tuples, should support
  393. __len__.
  394. :return: Pack object of the objects written.
  395. """
  396. return self.add_pack_data(
  397. *pack_objects_to_data(objects),
  398. progress=progress)
  399. class DiskObjectStore(PackBasedObjectStore):
  400. """Git-style object store that exists on disk."""
  401. def __init__(self, path):
  402. """Open an object store.
  403. :param path: Path of the object store.
  404. """
  405. super(DiskObjectStore, self).__init__()
  406. self.path = path
  407. self.pack_dir = os.path.join(self.path, PACKDIR)
  408. self._pack_cache_time = 0
  409. self._pack_cache = {}
  410. self._alternates = None
  411. def __repr__(self):
  412. return "<%s(%r)>" % (self.__class__.__name__, self.path)
  413. @property
  414. def alternates(self):
  415. if self._alternates is not None:
  416. return self._alternates
  417. self._alternates = []
  418. for path in self._read_alternate_paths():
  419. self._alternates.append(DiskObjectStore(path))
  420. return self._alternates
  421. def _read_alternate_paths(self):
  422. try:
  423. f = GitFile(os.path.join(self.path, INFODIR, "alternates"), 'rb')
  424. except (OSError, IOError) as e:
  425. if e.errno == errno.ENOENT:
  426. return
  427. raise
  428. with f:
  429. for line in f.readlines():
  430. line = line.rstrip(b"\n")
  431. if line[0] == b"#":
  432. continue
  433. if os.path.isabs(line):
  434. yield line.decode(sys.getfilesystemencoding())
  435. else:
  436. yield os.path.join(self.path, line).decode(
  437. sys.getfilesystemencoding())
  438. def add_alternate_path(self, path):
  439. """Add an alternate path to this object store.
  440. """
  441. try:
  442. os.mkdir(os.path.join(self.path, INFODIR))
  443. except OSError as e:
  444. if e.errno != errno.EEXIST:
  445. raise
  446. alternates_path = os.path.join(self.path, INFODIR, "alternates")
  447. with GitFile(alternates_path, 'wb') as f:
  448. try:
  449. orig_f = open(alternates_path, 'rb')
  450. except (OSError, IOError) as e:
  451. if e.errno != errno.ENOENT:
  452. raise
  453. else:
  454. with orig_f:
  455. f.write(orig_f.read())
  456. f.write(path.encode(sys.getfilesystemencoding()) + b"\n")
  457. if not os.path.isabs(path):
  458. path = os.path.join(self.path, path)
  459. self.alternates.append(DiskObjectStore(path))
  460. def _update_pack_cache(self):
  461. try:
  462. pack_dir_contents = os.listdir(self.pack_dir)
  463. except OSError as e:
  464. if e.errno == errno.ENOENT:
  465. self._pack_cache_time = 0
  466. self.close()
  467. return
  468. raise
  469. self._pack_cache_time = max(
  470. os.stat(self.pack_dir).st_mtime, time.time())
  471. pack_files = set()
  472. for name in pack_dir_contents:
  473. if name.startswith("pack-") and name.endswith(".pack"):
  474. # verify that idx exists first (otherwise the pack was not yet
  475. # fully written)
  476. idx_name = os.path.splitext(name)[0] + ".idx"
  477. if idx_name in pack_dir_contents:
  478. pack_name = name[:-len(".pack")]
  479. pack_files.add(pack_name)
  480. # Open newly appeared pack files
  481. for f in pack_files:
  482. if f not in self._pack_cache:
  483. self._pack_cache[f] = Pack(os.path.join(self.pack_dir, f))
  484. # Remove disappeared pack files
  485. for f in set(self._pack_cache) - pack_files:
  486. self._pack_cache.pop(f).close()
  487. def _pack_cache_stale(self):
  488. try:
  489. return os.stat(self.pack_dir).st_mtime >= self._pack_cache_time
  490. except OSError as e:
  491. if e.errno == errno.ENOENT:
  492. return True
  493. raise
  494. def _get_shafile_path(self, sha):
  495. # Check from object dir
  496. return hex_to_filename(self.path, sha)
  497. def _iter_loose_objects(self):
  498. for base in os.listdir(self.path):
  499. if len(base) != 2:
  500. continue
  501. for rest in os.listdir(os.path.join(self.path, base)):
  502. yield (base+rest).encode(sys.getfilesystemencoding())
  503. def _get_loose_object(self, sha):
  504. path = self._get_shafile_path(sha)
  505. try:
  506. return ShaFile.from_path(path)
  507. except (OSError, IOError) as e:
  508. if e.errno == errno.ENOENT:
  509. return None
  510. raise
  511. def _remove_loose_object(self, sha):
  512. os.remove(self._get_shafile_path(sha))
  513. def _remove_pack(self, pack):
  514. os.remove(pack.data.path)
  515. os.remove(pack.index.path)
  516. def _get_pack_basepath(self, entries):
  517. suffix = iter_sha1(entry[0] for entry in entries)
  518. # TODO: Handle self.pack_dir being bytes
  519. suffix = suffix.decode('ascii')
  520. return os.path.join(self.pack_dir, "pack-" + suffix)
  521. def _complete_thin_pack(self, f, path, copier, indexer):
  522. """Move a specific file containing a pack into the pack directory.
  523. :note: The file should be on the same file system as the
  524. packs directory.
  525. :param f: Open file object for the pack.
  526. :param path: Path to the pack file.
  527. :param copier: A PackStreamCopier to use for writing pack data.
  528. :param indexer: A PackIndexer for indexing the pack.
  529. """
  530. entries = list(indexer)
  531. # Update the header with the new number of objects.
  532. f.seek(0)
  533. write_pack_header(f, len(entries) + len(indexer.ext_refs()))
  534. # Must flush before reading (http://bugs.python.org/issue3207)
  535. f.flush()
  536. # Rescan the rest of the pack, computing the SHA with the new header.
  537. new_sha = compute_file_sha(f, end_ofs=-20)
  538. # Must reposition before writing (http://bugs.python.org/issue3207)
  539. f.seek(0, os.SEEK_CUR)
  540. # Complete the pack.
  541. for ext_sha in indexer.ext_refs():
  542. assert len(ext_sha) == 20
  543. type_num, data = self.get_raw(ext_sha)
  544. offset = f.tell()
  545. crc32 = write_pack_object(f, type_num, data, sha=new_sha)
  546. entries.append((ext_sha, offset, crc32))
  547. pack_sha = new_sha.digest()
  548. f.write(pack_sha)
  549. f.close()
  550. # Move the pack in.
  551. entries.sort()
  552. pack_base_name = self._get_pack_basepath(entries)
  553. target_pack = pack_base_name + '.pack'
  554. if sys.platform == 'win32':
  555. # Windows might have the target pack file lingering. Attempt
  556. # removal, silently passing if the target does not exist.
  557. try:
  558. os.remove(target_pack)
  559. except (IOError, OSError) as e:
  560. if e.errno != errno.ENOENT:
  561. raise
  562. os.rename(path, target_pack)
  563. # Write the index.
  564. index_file = GitFile(pack_base_name + '.idx', 'wb')
  565. try:
  566. write_pack_index_v2(index_file, entries, pack_sha)
  567. index_file.close()
  568. finally:
  569. index_file.abort()
  570. # Add the pack to the store and return it.
  571. final_pack = Pack(pack_base_name)
  572. final_pack.check_length_and_checksum()
  573. self._add_known_pack(pack_base_name, final_pack)
  574. return final_pack
  575. def add_thin_pack(self, read_all, read_some):
  576. """Add a new thin pack to this object store.
  577. Thin packs are packs that contain deltas with parents that exist
  578. outside the pack. They should never be placed in the object store
  579. directly, and always indexed and completed as they are copied.
  580. :param read_all: Read function that blocks until the number of
  581. requested bytes are read.
  582. :param read_some: Read function that returns at least one byte, but may
  583. not return the number of bytes requested.
  584. :return: A Pack object pointing at the now-completed thin pack in the
  585. objects/pack directory.
  586. """
  587. fd, path = tempfile.mkstemp(dir=self.path, prefix='tmp_pack_')
  588. with os.fdopen(fd, 'w+b') as f:
  589. indexer = PackIndexer(f, resolve_ext_ref=self.get_raw)
  590. copier = PackStreamCopier(read_all, read_some, f,
  591. delta_iter=indexer)
  592. copier.verify()
  593. return self._complete_thin_pack(f, path, copier, indexer)
  594. def move_in_pack(self, path):
  595. """Move a specific file containing a pack into the pack directory.
  596. :note: The file should be on the same file system as the
  597. packs directory.
  598. :param path: Path to the pack file.
  599. """
  600. with PackData(path) as p:
  601. entries = p.sorted_entries()
  602. basename = self._get_pack_basepath(entries)
  603. with GitFile(basename+".idx", "wb") as f:
  604. write_pack_index_v2(f, entries, p.get_stored_checksum())
  605. if self._pack_cache is None or self._pack_cache_stale():
  606. self._update_pack_cache()
  607. try:
  608. return self._pack_cache[basename]
  609. except KeyError:
  610. pass
  611. target_pack = basename + '.pack'
  612. if sys.platform == 'win32':
  613. # Windows might have the target pack file lingering. Attempt
  614. # removal, silently passing if the target does not exist.
  615. try:
  616. os.remove(target_pack)
  617. except (IOError, OSError) as e:
  618. if e.errno != errno.ENOENT:
  619. raise
  620. os.rename(path, target_pack)
  621. final_pack = Pack(basename)
  622. self._add_known_pack(basename, final_pack)
  623. return final_pack
  624. def add_pack(self):
  625. """Add a new pack to this object store.
  626. :return: Fileobject to write to, a commit function to
  627. call when the pack is finished and an abort
  628. function.
  629. """
  630. fd, path = tempfile.mkstemp(dir=self.pack_dir, suffix=".pack")
  631. f = os.fdopen(fd, 'wb')
  632. def commit():
  633. f.flush()
  634. os.fsync(fd)
  635. f.close()
  636. if os.path.getsize(path) > 0:
  637. return self.move_in_pack(path)
  638. else:
  639. os.remove(path)
  640. return None
  641. def abort():
  642. f.close()
  643. os.remove(path)
  644. return f, commit, abort
  645. def add_object(self, obj):
  646. """Add a single object to this object store.
  647. :param obj: Object to add
  648. """
  649. path = self._get_shafile_path(obj.id)
  650. dir = os.path.dirname(path)
  651. try:
  652. os.mkdir(dir)
  653. except OSError as e:
  654. if e.errno != errno.EEXIST:
  655. raise
  656. if os.path.exists(path):
  657. return # Already there, no need to write again
  658. with GitFile(path, 'wb') as f:
  659. f.write(obj.as_legacy_object())
  660. @classmethod
  661. def init(cls, path):
  662. try:
  663. os.mkdir(path)
  664. except OSError as e:
  665. if e.errno != errno.EEXIST:
  666. raise
  667. os.mkdir(os.path.join(path, "info"))
  668. os.mkdir(os.path.join(path, PACKDIR))
  669. return cls(path)
  670. class MemoryObjectStore(BaseObjectStore):
  671. """Object store that keeps all objects in memory."""
  672. def __init__(self):
  673. super(MemoryObjectStore, self).__init__()
  674. self._data = {}
  675. def _to_hexsha(self, sha):
  676. if len(sha) == 40:
  677. return sha
  678. elif len(sha) == 20:
  679. return sha_to_hex(sha)
  680. else:
  681. raise ValueError("Invalid sha %r" % (sha,))
  682. def contains_loose(self, sha):
  683. """Check if a particular object is present by SHA1 and is loose."""
  684. return self._to_hexsha(sha) in self._data
  685. def contains_packed(self, sha):
  686. """Check if a particular object is present by SHA1 and is packed."""
  687. return False
  688. def __iter__(self):
  689. """Iterate over the SHAs that are present in this store."""
  690. return iter(self._data.keys())
  691. @property
  692. def packs(self):
  693. """List with pack objects."""
  694. return []
  695. def get_raw(self, name):
  696. """Obtain the raw text for an object.
  697. :param name: sha for the object.
  698. :return: tuple with numeric type and object contents.
  699. """
  700. obj = self[self._to_hexsha(name)]
  701. return obj.type_num, obj.as_raw_string()
  702. def __getitem__(self, name):
  703. return self._data[self._to_hexsha(name)].copy()
  704. def __delitem__(self, name):
  705. """Delete an object from this store, for testing only."""
  706. del self._data[self._to_hexsha(name)]
  707. def add_object(self, obj):
  708. """Add a single object to this object store.
  709. """
  710. self._data[obj.id] = obj.copy()
  711. def add_objects(self, objects, progress=None):
  712. """Add a set of objects to this object store.
  713. :param objects: Iterable over a list of (object, path) tuples
  714. """
  715. for obj, path in objects:
  716. self.add_object(obj)
  717. def add_pack(self):
  718. """Add a new pack to this object store.
  719. Because this object store doesn't support packs, we extract and add the
  720. individual objects.
  721. :return: Fileobject to write to and a commit function to
  722. call when the pack is finished.
  723. """
  724. f = BytesIO()
  725. def commit():
  726. p = PackData.from_file(BytesIO(f.getvalue()), f.tell())
  727. f.close()
  728. for obj in PackInflater.for_pack_data(p, self.get_raw):
  729. self.add_object(obj)
  730. def abort():
  731. pass
  732. return f, commit, abort
  733. def _complete_thin_pack(self, f, indexer):
  734. """Complete a thin pack by adding external references.
  735. :param f: Open file object for the pack.
  736. :param indexer: A PackIndexer for indexing the pack.
  737. """
  738. entries = list(indexer)
  739. # Update the header with the new number of objects.
  740. f.seek(0)
  741. write_pack_header(f, len(entries) + len(indexer.ext_refs()))
  742. # Rescan the rest of the pack, computing the SHA with the new header.
  743. new_sha = compute_file_sha(f, end_ofs=-20)
  744. # Complete the pack.
  745. for ext_sha in indexer.ext_refs():
  746. assert len(ext_sha) == 20
  747. type_num, data = self.get_raw(ext_sha)
  748. write_pack_object(f, type_num, data, sha=new_sha)
  749. pack_sha = new_sha.digest()
  750. f.write(pack_sha)
  751. def add_thin_pack(self, read_all, read_some):
  752. """Add a new thin pack to this object store.
  753. Thin packs are packs that contain deltas with parents that exist
  754. outside the pack. Because this object store doesn't support packs, we
  755. extract and add the individual objects.
  756. :param read_all: Read function that blocks until the number of
  757. requested bytes are read.
  758. :param read_some: Read function that returns at least one byte, but may
  759. not return the number of bytes requested.
  760. """
  761. f, commit, abort = self.add_pack()
  762. try:
  763. indexer = PackIndexer(f, resolve_ext_ref=self.get_raw)
  764. copier = PackStreamCopier(read_all, read_some, f,
  765. delta_iter=indexer)
  766. copier.verify()
  767. self._complete_thin_pack(f, indexer)
  768. except BaseException:
  769. abort()
  770. raise
  771. else:
  772. commit()
  773. class ObjectIterator(object):
  774. """Interface for iterating over objects."""
  775. def iterobjects(self):
  776. raise NotImplementedError(self.iterobjects)
  777. class ObjectStoreIterator(ObjectIterator):
  778. """ObjectIterator that works on top of an ObjectStore."""
  779. def __init__(self, store, sha_iter):
  780. """Create a new ObjectIterator.
  781. :param store: Object store to retrieve from
  782. :param sha_iter: Iterator over (sha, path) tuples
  783. """
  784. self.store = store
  785. self.sha_iter = sha_iter
  786. self._shas = []
  787. def __iter__(self):
  788. """Yield tuple with next object and path."""
  789. for sha, path in self.itershas():
  790. yield self.store[sha], path
  791. def iterobjects(self):
  792. """Iterate over just the objects."""
  793. for o, path in self:
  794. yield o
  795. def itershas(self):
  796. """Iterate over the SHAs."""
  797. for sha in self._shas:
  798. yield sha
  799. for sha in self.sha_iter:
  800. self._shas.append(sha)
  801. yield sha
  802. def __contains__(self, needle):
  803. """Check if an object is present.
  804. :note: This checks if the object is present in
  805. the underlying object store, not if it would
  806. be yielded by the iterator.
  807. :param needle: SHA1 of the object to check for
  808. """
  809. return needle in self.store
  810. def __getitem__(self, key):
  811. """Find an object by SHA1.
  812. :note: This retrieves the object from the underlying
  813. object store. It will also succeed if the object would
  814. not be returned by the iterator.
  815. """
  816. return self.store[key]
  817. def __len__(self):
  818. """Return the number of objects."""
  819. return len(list(self.itershas()))
  820. def empty(self):
  821. iter = self.itershas()
  822. try:
  823. iter()
  824. except StopIteration:
  825. return True
  826. else:
  827. return False
  828. def __bool__(self):
  829. """Indicate whether this object has contents."""
  830. return not self.empty()
  831. def tree_lookup_path(lookup_obj, root_sha, path):
  832. """Look up an object in a Git tree.
  833. :param lookup_obj: Callback for retrieving object by SHA1
  834. :param root_sha: SHA1 of the root tree
  835. :param path: Path to lookup
  836. :return: A tuple of (mode, SHA) of the resulting path.
  837. """
  838. tree = lookup_obj(root_sha)
  839. if not isinstance(tree, Tree):
  840. raise NotTreeError(root_sha)
  841. return tree.lookup_path(lookup_obj, path)
  842. def _collect_filetree_revs(obj_store, tree_sha, kset):
  843. """Collect SHA1s of files and directories for specified tree.
  844. :param obj_store: Object store to get objects by SHA from
  845. :param tree_sha: tree reference to walk
  846. :param kset: set to fill with references to files and directories
  847. """
  848. filetree = obj_store[tree_sha]
  849. for name, mode, sha in filetree.iteritems():
  850. if not S_ISGITLINK(mode) and sha not in kset:
  851. kset.add(sha)
  852. if stat.S_ISDIR(mode):
  853. _collect_filetree_revs(obj_store, sha, kset)
  854. def _split_commits_and_tags(obj_store, lst, ignore_unknown=False):
  855. """Split object id list into three lists with commit, tag, and other SHAs.
  856. Commits referenced by tags are included into commits
  857. list as well. Only SHA1s known in this repository will get
  858. through, and unless ignore_unknown argument is True, KeyError
  859. is thrown for SHA1 missing in the repository
  860. :param obj_store: Object store to get objects by SHA1 from
  861. :param lst: Collection of commit and tag SHAs
  862. :param ignore_unknown: True to skip SHA1 missing in the repository
  863. silently.
  864. :return: A tuple of (commits, tags, others) SHA1s
  865. """
  866. commits = set()
  867. tags = set()
  868. others = set()
  869. for e in lst:
  870. try:
  871. o = obj_store[e]
  872. except KeyError:
  873. if not ignore_unknown:
  874. raise
  875. else:
  876. if isinstance(o, Commit):
  877. commits.add(e)
  878. elif isinstance(o, Tag):
  879. tags.add(e)
  880. tagged = o.object[1]
  881. c, t, o = _split_commits_and_tags(
  882. obj_store, [tagged], ignore_unknown=ignore_unknown)
  883. commits |= c
  884. tags |= t
  885. others |= o
  886. else:
  887. others.add(e)
  888. return (commits, tags, others)
  889. class MissingObjectFinder(object):
  890. """Find the objects missing from another object store.
  891. :param object_store: Object store containing at least all objects to be
  892. sent
  893. :param haves: SHA1s of commits not to send (already present in target)
  894. :param wants: SHA1s of commits to send
  895. :param progress: Optional function to report progress to.
  896. :param get_tagged: Function that returns a dict of pointed-to sha -> tag
  897. sha for including tags.
  898. :param get_parents: Optional function for getting the parents of a commit.
  899. :param tagged: dict of pointed-to sha -> tag sha for including tags
  900. """
  901. def __init__(self, object_store, haves, wants, progress=None,
  902. get_tagged=None, get_parents=lambda commit: commit.parents):
  903. self.object_store = object_store
  904. self._get_parents = get_parents
  905. # process Commits and Tags differently
  906. # Note, while haves may list commits/tags not available locally,
  907. # and such SHAs would get filtered out by _split_commits_and_tags,
  908. # wants shall list only known SHAs, and otherwise
  909. # _split_commits_and_tags fails with KeyError
  910. have_commits, have_tags, have_others = (
  911. _split_commits_and_tags(object_store, haves, True))
  912. want_commits, want_tags, want_others = (
  913. _split_commits_and_tags(object_store, wants, False))
  914. # all_ancestors is a set of commits that shall not be sent
  915. # (complete repository up to 'haves')
  916. all_ancestors = object_store._collect_ancestors(
  917. have_commits, get_parents=self._get_parents)[0]
  918. # all_missing - complete set of commits between haves and wants
  919. # common - commits from all_ancestors we hit into while
  920. # traversing parent hierarchy of wants
  921. missing_commits, common_commits = object_store._collect_ancestors(
  922. want_commits, all_ancestors, get_parents=self._get_parents)
  923. self.sha_done = set()
  924. # Now, fill sha_done with commits and revisions of
  925. # files and directories known to be both locally
  926. # and on target. Thus these commits and files
  927. # won't get selected for fetch
  928. for h in common_commits:
  929. self.sha_done.add(h)
  930. cmt = object_store[h]
  931. _collect_filetree_revs(object_store, cmt.tree, self.sha_done)
  932. # record tags we have as visited, too
  933. for t in have_tags:
  934. self.sha_done.add(t)
  935. missing_tags = want_tags.difference(have_tags)
  936. missing_others = want_others.difference(have_others)
  937. # in fact, what we 'want' is commits, tags, and others
  938. # we've found missing
  939. wants = missing_commits.union(missing_tags)
  940. wants = wants.union(missing_others)
  941. self.objects_to_send = set([(w, None, False) for w in wants])
  942. if progress is None:
  943. self.progress = lambda x: None
  944. else:
  945. self.progress = progress
  946. self._tagged = get_tagged and get_tagged() or {}
  947. def add_todo(self, entries):
  948. self.objects_to_send.update([e for e in entries
  949. if not e[0] in self.sha_done])
  950. def next(self):
  951. while True:
  952. if not self.objects_to_send:
  953. return None
  954. (sha, name, leaf) = self.objects_to_send.pop()
  955. if sha not in self.sha_done:
  956. break
  957. if not leaf:
  958. o = self.object_store[sha]
  959. if isinstance(o, Commit):
  960. self.add_todo([(o.tree, "", False)])
  961. elif isinstance(o, Tree):
  962. self.add_todo([(s, n, not stat.S_ISDIR(m))
  963. for n, m, s in o.iteritems()
  964. if not S_ISGITLINK(m)])
  965. elif isinstance(o, Tag):
  966. self.add_todo([(o.object[1], None, False)])
  967. if sha in self._tagged:
  968. self.add_todo([(self._tagged[sha], None, True)])
  969. self.sha_done.add(sha)
  970. self.progress(("counting objects: %d\r" %
  971. len(self.sha_done)).encode('ascii'))
  972. return (sha, name)
  973. __next__ = next
  974. class ObjectStoreGraphWalker(object):
  975. """Graph walker that finds what commits are missing from an object store.
  976. :ivar heads: Revisions without descendants in the local repo
  977. :ivar get_parents: Function to retrieve parents in the local repo
  978. """
  979. def __init__(self, local_heads, get_parents, shallow=None):
  980. """Create a new instance.
  981. :param local_heads: Heads to start search with
  982. :param get_parents: Function for finding the parents of a SHA1.
  983. """
  984. self.heads = set(local_heads)
  985. self.get_parents = get_parents
  986. self.parents = {}
  987. if shallow is None:
  988. shallow = set()
  989. self.shallow = shallow
  990. def ack(self, sha):
  991. """Ack that a revision and its ancestors are present in the source."""
  992. if len(sha) != 40:
  993. raise ValueError("unexpected sha %r received" % sha)
  994. ancestors = set([sha])
  995. # stop if we run out of heads to remove
  996. while self.heads:
  997. for a in ancestors:
  998. if a in self.heads:
  999. self.heads.remove(a)
  1000. # collect all ancestors
  1001. new_ancestors = set()
  1002. for a in ancestors:
  1003. ps = self.parents.get(a)
  1004. if ps is not None:
  1005. new_ancestors.update(ps)
  1006. self.parents[a] = None
  1007. # no more ancestors; stop
  1008. if not new_ancestors:
  1009. break
  1010. ancestors = new_ancestors
  1011. def next(self):
  1012. """Iterate over ancestors of heads in the target."""
  1013. if self.heads:
  1014. ret = self.heads.pop()
  1015. ps = self.get_parents(ret)
  1016. self.parents[ret] = ps
  1017. self.heads.update(
  1018. [p for p in ps if p not in self.parents])
  1019. return ret
  1020. return None
  1021. __next__ = next
  1022. def commit_tree_changes(object_store, tree, changes):
  1023. """Commit a specified set of changes to a tree structure.
  1024. This will apply a set of changes on top of an existing tree, storing new
  1025. objects in object_store.
  1026. changes are a list of tuples with (path, mode, object_sha).
  1027. Paths can be both blobs and trees. See the mode and
  1028. object sha to None deletes the path.
  1029. This method works especially well if there are only a small
  1030. number of changes to a big tree. For a large number of changes
  1031. to a large tree, use e.g. commit_tree.
  1032. :param object_store: Object store to store new objects in
  1033. and retrieve old ones from.
  1034. :param tree: Original tree root
  1035. :param changes: changes to apply
  1036. :return: New tree root object
  1037. """
  1038. # TODO(jelmer): Save up the objects and add them using .add_objects
  1039. # rather than with individual calls to .add_object.
  1040. nested_changes = {}
  1041. for (path, new_mode, new_sha) in changes:
  1042. try:
  1043. (dirname, subpath) = path.split(b'/', 1)
  1044. except ValueError:
  1045. if new_sha is None:
  1046. del tree[path]
  1047. else:
  1048. tree[path] = (new_mode, new_sha)
  1049. else:
  1050. nested_changes.setdefault(dirname, []).append(
  1051. (subpath, new_mode, new_sha))
  1052. for name, subchanges in nested_changes.items():
  1053. try:
  1054. orig_subtree = object_store[tree[name][1]]
  1055. except KeyError:
  1056. orig_subtree = Tree()
  1057. subtree = commit_tree_changes(object_store, orig_subtree, subchanges)
  1058. if len(subtree) == 0:
  1059. del tree[name]
  1060. else:
  1061. tree[name] = (stat.S_IFDIR, subtree.id)
  1062. object_store.add_object(tree)
  1063. return tree
  1064. class OverlayObjectStore(BaseObjectStore):
  1065. """Object store that can overlay multiple object stores."""
  1066. def __init__(self, bases, add_store=None):
  1067. self.bases = bases
  1068. self.add_store = add_store
  1069. def add_object(self, object):
  1070. if self.add_store is None:
  1071. raise NotImplementedError(self.add_object)
  1072. return self.add_store.add_object(object)
  1073. def add_objects(self, objects, progress=None):
  1074. if self.add_store is None:
  1075. raise NotImplementedError(self.add_object)
  1076. return self.add_store.add_objects(objects, progress)
  1077. @property
  1078. def packs(self):
  1079. ret = []
  1080. for b in self.bases:
  1081. ret.extend(b.packs)
  1082. return ret
  1083. def __iter__(self):
  1084. done = set()
  1085. for b in self.bases:
  1086. for o_id in b:
  1087. if o_id not in done:
  1088. yield o_id
  1089. done.add(o_id)
  1090. def get_raw(self, sha_id):
  1091. for b in self.bases:
  1092. try:
  1093. return b.get_raw(sha_id)
  1094. except KeyError:
  1095. pass
  1096. else:
  1097. raise KeyError(sha_id)
  1098. def contains_packed(self, sha):
  1099. for b in self.bases:
  1100. if b.contains_packed(sha):
  1101. return True
  1102. else:
  1103. return False
  1104. def contains_loose(self, sha):
  1105. for b in self.bases:
  1106. if b.contains_loose(sha):
  1107. return True
  1108. else:
  1109. return False
  1110. def read_packs_file(f):
  1111. """Yield the packs listed in a packs file."""
  1112. for line in f.read().splitlines():
  1113. if not line:
  1114. continue
  1115. (kind, name) = line.split(b" ", 1)
  1116. if kind != b"P":
  1117. continue
  1118. yield name.decode(sys.getfilesystemencoding())