object_store.py 51 KB

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