repo.py 60 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806
  1. # repo.py -- For dealing with git repositories.
  2. # Copyright (C) 2007 James Westby <jw+debian@jameswestby.net>
  3. # Copyright (C) 2008-2013 Jelmer Vernooij <jelmer@jelmer.uk>
  4. #
  5. # Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
  6. # General Public License as public by the Free Software Foundation; version 2.0
  7. # or (at your option) any later version. You can redistribute it and/or
  8. # modify it under the terms of either of these two licenses.
  9. #
  10. # Unless required by applicable law or agreed to in writing, software
  11. # distributed under the License is distributed on an "AS IS" BASIS,
  12. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. # See the License for the specific language governing permissions and
  14. # limitations under the License.
  15. #
  16. # You should have received a copy of the licenses; if not, see
  17. # <http://www.gnu.org/licenses/> for a copy of the GNU General Public License
  18. # and <http://www.apache.org/licenses/LICENSE-2.0> for a copy of the Apache
  19. # License, Version 2.0.
  20. #
  21. """Repository access.
  22. This module contains the base class for git repositories
  23. (BaseRepo) and an implementation which uses a repository on
  24. local disk (Repo).
  25. """
  26. import os
  27. import stat
  28. import sys
  29. import time
  30. import warnings
  31. from io import BytesIO
  32. from typing import (TYPE_CHECKING, BinaryIO, Callable, Dict, FrozenSet,
  33. Iterable, List, Optional, Set, Tuple, Union)
  34. if TYPE_CHECKING:
  35. # There are no circular imports here, but we try to defer imports as long
  36. # as possible to reduce start-up time for anything that doesn't need
  37. # these imports.
  38. from .config import StackedConfig, ConfigFile
  39. from .index import Index
  40. from .errors import (CommitError, HookError, NoIndexPresent, NotBlobError,
  41. NotCommitError, NotGitRepository, NotTagError,
  42. NotTreeError, RefFormatError)
  43. from .file import GitFile
  44. from .hooks import (CommitMsgShellHook, Hook, PostCommitShellHook,
  45. PostReceiveShellHook, PreCommitShellHook)
  46. from .line_ending import BlobNormalizer, TreeBlobNormalizer
  47. from .object_store import (DiskObjectStore, MemoryObjectStore,
  48. MissingObjectFinder, ObjectStoreGraphWalker,
  49. PackBasedObjectStore, peel_sha)
  50. from .objects import (Blob, Commit, ObjectID, ShaFile, Tag, Tree, check_hexsha,
  51. valid_hexsha)
  52. from .pack import generate_unpacked_objects
  53. from .refs import (ANNOTATED_TAG_SUFFIX, LOCAL_BRANCH_PREFIX, # noqa: F401
  54. LOCAL_TAG_PREFIX, SYMREF,
  55. DictRefsContainer, DiskRefsContainer, InfoRefsContainer,
  56. Ref, RefsContainer, _set_default_branch, _set_head,
  57. _set_origin_head, check_ref_format, read_packed_refs,
  58. read_packed_refs_with_peeled, serialize_refs,
  59. write_packed_refs)
  60. CONTROLDIR = ".git"
  61. OBJECTDIR = "objects"
  62. REFSDIR = "refs"
  63. REFSDIR_TAGS = "tags"
  64. REFSDIR_HEADS = "heads"
  65. INDEX_FILENAME = "index"
  66. COMMONDIR = "commondir"
  67. GITDIR = "gitdir"
  68. WORKTREES = "worktrees"
  69. BASE_DIRECTORIES = [
  70. ["branches"],
  71. [REFSDIR],
  72. [REFSDIR, REFSDIR_TAGS],
  73. [REFSDIR, REFSDIR_HEADS],
  74. ["hooks"],
  75. ["info"],
  76. ]
  77. DEFAULT_BRANCH = b"master"
  78. class InvalidUserIdentity(Exception):
  79. """User identity is not of the format 'user <email>'"""
  80. def __init__(self, identity):
  81. self.identity = identity
  82. # TODO(jelmer): Cache?
  83. def _get_default_identity() -> Tuple[str, str]:
  84. import socket
  85. for name in ('LOGNAME', 'USER', 'LNAME', 'USERNAME'):
  86. username = os.environ.get(name)
  87. if username:
  88. break
  89. else:
  90. username = None
  91. try:
  92. import pwd
  93. except ImportError:
  94. fullname = None
  95. else:
  96. try:
  97. entry = pwd.getpwuid(os.getuid()) # type: ignore
  98. except KeyError:
  99. fullname = None
  100. else:
  101. if getattr(entry, 'gecos', None):
  102. fullname = entry.pw_gecos.split(",")[0]
  103. else:
  104. fullname = None
  105. if username is None:
  106. username = entry.pw_name
  107. if not fullname:
  108. fullname = username
  109. email = os.environ.get("EMAIL")
  110. if email is None:
  111. email = f"{username}@{socket.gethostname()}"
  112. return (fullname, email) # type: ignore
  113. def get_user_identity(config: "StackedConfig", kind: Optional[str] = None) -> bytes:
  114. """Determine the identity to use for new commits.
  115. If kind is set, this first checks
  116. GIT_${KIND}_NAME and GIT_${KIND}_EMAIL.
  117. If those variables are not set, then it will fall back
  118. to reading the user.name and user.email settings from
  119. the specified configuration.
  120. If that also fails, then it will fall back to using
  121. the current users' identity as obtained from the host
  122. system (e.g. the gecos field, $EMAIL, $USER@$(hostname -f).
  123. Args:
  124. kind: Optional kind to return identity for,
  125. usually either "AUTHOR" or "COMMITTER".
  126. Returns:
  127. A user identity
  128. """
  129. user: Optional[bytes] = None
  130. email: Optional[bytes] = None
  131. if kind:
  132. user_uc = os.environ.get("GIT_" + kind + "_NAME")
  133. if user_uc is not None:
  134. user = user_uc.encode("utf-8")
  135. email_uc = os.environ.get("GIT_" + kind + "_EMAIL")
  136. if email_uc is not None:
  137. email = email_uc.encode("utf-8")
  138. if user is None:
  139. try:
  140. user = config.get(("user",), "name")
  141. except KeyError:
  142. user = None
  143. if email is None:
  144. try:
  145. email = config.get(("user",), "email")
  146. except KeyError:
  147. email = None
  148. default_user, default_email = _get_default_identity()
  149. if user is None:
  150. user = default_user.encode("utf-8")
  151. if email is None:
  152. email = default_email.encode("utf-8")
  153. if email.startswith(b"<") and email.endswith(b">"):
  154. email = email[1:-1]
  155. return user + b" <" + email + b">"
  156. def check_user_identity(identity):
  157. """Verify that a user identity is formatted correctly.
  158. Args:
  159. identity: User identity bytestring
  160. Raises:
  161. InvalidUserIdentity: Raised when identity is invalid
  162. """
  163. try:
  164. fst, snd = identity.split(b" <", 1)
  165. except ValueError as exc:
  166. raise InvalidUserIdentity(identity) from exc
  167. if b">" not in snd:
  168. raise InvalidUserIdentity(identity)
  169. if b'\0' in identity or b'\n' in identity:
  170. raise InvalidUserIdentity(identity)
  171. def parse_graftpoints(
  172. graftpoints: Iterable[bytes],
  173. ) -> Dict[bytes, List[bytes]]:
  174. """Convert a list of graftpoints into a dict
  175. Args:
  176. graftpoints: Iterator of graftpoint lines
  177. Each line is formatted as:
  178. <commit sha1> <parent sha1> [<parent sha1>]*
  179. Resulting dictionary is:
  180. <commit sha1>: [<parent sha1>*]
  181. https://git.wiki.kernel.org/index.php/GraftPoint
  182. """
  183. grafts = {}
  184. for line in graftpoints:
  185. raw_graft = line.split(None, 1)
  186. commit = raw_graft[0]
  187. if len(raw_graft) == 2:
  188. parents = raw_graft[1].split()
  189. else:
  190. parents = []
  191. for sha in [commit] + parents:
  192. check_hexsha(sha, "Invalid graftpoint")
  193. grafts[commit] = parents
  194. return grafts
  195. def serialize_graftpoints(graftpoints: Dict[bytes, List[bytes]]) -> bytes:
  196. """Convert a dictionary of grafts into string
  197. The graft dictionary is:
  198. <commit sha1>: [<parent sha1>*]
  199. Each line is formatted as:
  200. <commit sha1> <parent sha1> [<parent sha1>]*
  201. https://git.wiki.kernel.org/index.php/GraftPoint
  202. """
  203. graft_lines = []
  204. for commit, parents in graftpoints.items():
  205. if parents:
  206. graft_lines.append(commit + b" " + b" ".join(parents))
  207. else:
  208. graft_lines.append(commit)
  209. return b"\n".join(graft_lines)
  210. def _set_filesystem_hidden(path):
  211. """Mark path as to be hidden if supported by platform and filesystem.
  212. On win32 uses SetFileAttributesW api:
  213. <https://docs.microsoft.com/windows/desktop/api/fileapi/nf-fileapi-setfileattributesw>
  214. """
  215. if sys.platform == "win32":
  216. import ctypes
  217. from ctypes.wintypes import BOOL, DWORD, LPCWSTR
  218. FILE_ATTRIBUTE_HIDDEN = 2
  219. SetFileAttributesW = ctypes.WINFUNCTYPE(BOOL, LPCWSTR, DWORD)(
  220. ("SetFileAttributesW", ctypes.windll.kernel32)
  221. )
  222. if isinstance(path, bytes):
  223. path = os.fsdecode(path)
  224. if not SetFileAttributesW(path, FILE_ATTRIBUTE_HIDDEN):
  225. pass # Could raise or log `ctypes.WinError()` here
  226. # Could implement other platform specific filesystem hiding here
  227. class ParentsProvider:
  228. def __init__(self, store, grafts={}, shallows=[]):
  229. self.store = store
  230. self.grafts = grafts
  231. self.shallows = set(shallows)
  232. def get_parents(self, commit_id, commit=None):
  233. try:
  234. return self.grafts[commit_id]
  235. except KeyError:
  236. pass
  237. if commit_id in self.shallows:
  238. return []
  239. if commit is None:
  240. commit = self.store[commit_id]
  241. return commit.parents
  242. class BaseRepo:
  243. """Base class for a git repository.
  244. This base class is meant to be used for Repository implementations that e.g.
  245. work on top of a different transport than a standard filesystem path.
  246. Attributes:
  247. object_store: Dictionary-like object for accessing
  248. the objects
  249. refs: Dictionary-like object with the refs in this
  250. repository
  251. """
  252. def __init__(self, object_store: PackBasedObjectStore, refs: RefsContainer):
  253. """Open a repository.
  254. This shouldn't be called directly, but rather through one of the
  255. base classes, such as MemoryRepo or Repo.
  256. Args:
  257. object_store: Object store to use
  258. refs: Refs container to use
  259. """
  260. self.object_store = object_store
  261. self.refs = refs
  262. self._graftpoints: Dict[bytes, List[bytes]] = {}
  263. self.hooks: Dict[str, Hook] = {}
  264. def _determine_file_mode(self) -> bool:
  265. """Probe the file-system to determine whether permissions can be trusted.
  266. Returns: True if permissions can be trusted, False otherwise.
  267. """
  268. raise NotImplementedError(self._determine_file_mode)
  269. def _init_files(self, bare: bool) -> None:
  270. """Initialize a default set of named files."""
  271. from .config import ConfigFile
  272. self._put_named_file("description", b"Unnamed repository")
  273. f = BytesIO()
  274. cf = ConfigFile()
  275. cf.set("core", "repositoryformatversion", "0")
  276. if self._determine_file_mode():
  277. cf.set("core", "filemode", True)
  278. else:
  279. cf.set("core", "filemode", False)
  280. cf.set("core", "bare", bare)
  281. cf.set("core", "logallrefupdates", True)
  282. cf.write_to_file(f)
  283. self._put_named_file("config", f.getvalue())
  284. self._put_named_file(os.path.join("info", "exclude"), b"")
  285. def get_named_file(self, path: str) -> Optional[BinaryIO]:
  286. """Get a file from the control dir with a specific name.
  287. Although the filename should be interpreted as a filename relative to
  288. the control dir in a disk-based Repo, the object returned need not be
  289. pointing to a file in that location.
  290. Args:
  291. path: The path to the file, relative to the control dir.
  292. Returns: An open file object, or None if the file does not exist.
  293. """
  294. raise NotImplementedError(self.get_named_file)
  295. def _put_named_file(self, path: str, contents: bytes):
  296. """Write a file to the control dir with the given name and contents.
  297. Args:
  298. path: The path to the file, relative to the control dir.
  299. contents: A string to write to the file.
  300. """
  301. raise NotImplementedError(self._put_named_file)
  302. def _del_named_file(self, path: str):
  303. """Delete a file in the control directory with the given name."""
  304. raise NotImplementedError(self._del_named_file)
  305. def open_index(self) -> "Index":
  306. """Open the index for this repository.
  307. Raises:
  308. NoIndexPresent: If no index is present
  309. Returns: The matching `Index`
  310. """
  311. raise NotImplementedError(self.open_index)
  312. def fetch(self, target, determine_wants=None, progress=None, depth=None):
  313. """Fetch objects into another repository.
  314. Args:
  315. target: The target repository
  316. determine_wants: Optional function to determine what refs to
  317. fetch.
  318. progress: Optional progress function
  319. depth: Optional shallow fetch depth
  320. Returns: The local refs
  321. """
  322. if determine_wants is None:
  323. determine_wants = target.object_store.determine_wants_all
  324. count, pack_data = self.fetch_pack_data(
  325. determine_wants,
  326. target.get_graph_walker(),
  327. progress=progress,
  328. depth=depth,
  329. )
  330. target.object_store.add_pack_data(count, pack_data, progress)
  331. return self.get_refs()
  332. def fetch_pack_data(
  333. self,
  334. determine_wants,
  335. graph_walker,
  336. progress,
  337. get_tagged=None,
  338. depth=None,
  339. ):
  340. """Fetch the pack data required for a set of revisions.
  341. Args:
  342. determine_wants: Function that takes a dictionary with heads
  343. and returns the list of heads to fetch.
  344. graph_walker: Object that can iterate over the list of revisions
  345. to fetch and has an "ack" method that will be called to acknowledge
  346. that a revision is present.
  347. progress: Simple progress function that will be called with
  348. updated progress strings.
  349. get_tagged: Function that returns a dict of pointed-to sha ->
  350. tag sha for including tags.
  351. depth: Shallow fetch depth
  352. Returns: count and iterator over pack data
  353. """
  354. missing_objects = self.find_missing_objects(
  355. determine_wants, graph_walker, progress, get_tagged, depth=depth
  356. )
  357. remote_has = missing_objects.get_remote_has()
  358. object_ids = list(missing_objects)
  359. return len(object_ids), generate_unpacked_objects(
  360. self.object_store, object_ids, progress=progress,
  361. other_haves=remote_has)
  362. def find_missing_objects(
  363. self,
  364. determine_wants,
  365. graph_walker,
  366. progress,
  367. get_tagged=None,
  368. depth=None,
  369. ) -> Optional[MissingObjectFinder]:
  370. """Fetch the missing objects required for a set of revisions.
  371. Args:
  372. determine_wants: Function that takes a dictionary with heads
  373. and returns the list of heads to fetch.
  374. graph_walker: Object that can iterate over the list of revisions
  375. to fetch and has an "ack" method that will be called to acknowledge
  376. that a revision is present.
  377. progress: Simple progress function that will be called with
  378. updated progress strings.
  379. get_tagged: Function that returns a dict of pointed-to sha ->
  380. tag sha for including tags.
  381. depth: Shallow fetch depth
  382. Returns: iterator over objects, with __len__ implemented
  383. """
  384. if depth not in (None, 0):
  385. raise NotImplementedError("depth not supported yet")
  386. refs = serialize_refs(self.object_store, self.get_refs())
  387. wants = determine_wants(refs)
  388. if not isinstance(wants, list):
  389. raise TypeError("determine_wants() did not return a list")
  390. shallows: FrozenSet[ObjectID] = getattr(graph_walker, "shallow", frozenset())
  391. unshallows: FrozenSet[ObjectID] = getattr(graph_walker, "unshallow", frozenset())
  392. if wants == []:
  393. # TODO(dborowitz): find a way to short-circuit that doesn't change
  394. # this interface.
  395. if shallows or unshallows:
  396. # Do not send a pack in shallow short-circuit path
  397. return None
  398. class DummyMissingObjectFinder:
  399. def get_remote_has(self):
  400. return None
  401. def __len__(self):
  402. return 0
  403. def __iter__(self):
  404. yield from []
  405. return DummyMissingObjectFinder() # type: ignore
  406. # If the graph walker is set up with an implementation that can
  407. # ACK/NAK to the wire, it will write data to the client through
  408. # this call as a side-effect.
  409. haves = self.object_store.find_common_revisions(graph_walker)
  410. # Deal with shallow requests separately because the haves do
  411. # not reflect what objects are missing
  412. if shallows or unshallows:
  413. # TODO: filter the haves commits from iter_shas. the specific
  414. # commits aren't missing.
  415. haves = []
  416. parents_provider = ParentsProvider(self.object_store, shallows=shallows)
  417. def get_parents(commit):
  418. return parents_provider.get_parents(commit.id, commit)
  419. return MissingObjectFinder(
  420. self.object_store,
  421. haves=haves,
  422. wants=wants,
  423. shallow=self.get_shallow(),
  424. progress=progress,
  425. get_tagged=get_tagged,
  426. get_parents=get_parents)
  427. def generate_pack_data(self, have: List[ObjectID], want: List[ObjectID],
  428. progress: Optional[Callable[[str], None]] = None,
  429. ofs_delta: Optional[bool] = None):
  430. """Generate pack data objects for a set of wants/haves.
  431. Args:
  432. have: List of SHA1s of objects that should not be sent
  433. want: List of SHA1s of objects that should be sent
  434. ofs_delta: Whether OFS deltas can be included
  435. progress: Optional progress reporting method
  436. """
  437. return self.object_store.generate_pack_data(
  438. have,
  439. want,
  440. shallow=self.get_shallow(),
  441. progress=progress,
  442. ofs_delta=ofs_delta,
  443. )
  444. def get_graph_walker(
  445. self,
  446. heads: Optional[List[ObjectID]] = None) -> ObjectStoreGraphWalker:
  447. """Retrieve a graph walker.
  448. A graph walker is used by a remote repository (or proxy)
  449. to find out which objects are present in this repository.
  450. Args:
  451. heads: Repository heads to use (optional)
  452. Returns: A graph walker object
  453. """
  454. if heads is None:
  455. heads = [
  456. sha
  457. for sha in self.refs.as_dict(b"refs/heads").values()
  458. if sha in self.object_store
  459. ]
  460. parents_provider = ParentsProvider(self.object_store)
  461. return ObjectStoreGraphWalker(
  462. heads, parents_provider.get_parents, shallow=self.get_shallow()
  463. )
  464. def get_refs(self) -> Dict[bytes, bytes]:
  465. """Get dictionary with all refs.
  466. Returns: A ``dict`` mapping ref names to SHA1s
  467. """
  468. return self.refs.as_dict()
  469. def head(self) -> bytes:
  470. """Return the SHA1 pointed at by HEAD."""
  471. return self.refs[b"HEAD"]
  472. def _get_object(self, sha, cls):
  473. assert len(sha) in (20, 40)
  474. ret = self.get_object(sha)
  475. if not isinstance(ret, cls):
  476. if cls is Commit:
  477. raise NotCommitError(ret)
  478. elif cls is Blob:
  479. raise NotBlobError(ret)
  480. elif cls is Tree:
  481. raise NotTreeError(ret)
  482. elif cls is Tag:
  483. raise NotTagError(ret)
  484. else:
  485. raise Exception(
  486. "Type invalid: {!r} != {!r}".format(ret.type_name, cls.type_name)
  487. )
  488. return ret
  489. def get_object(self, sha: bytes) -> ShaFile:
  490. """Retrieve the object with the specified SHA.
  491. Args:
  492. sha: SHA to retrieve
  493. Returns: A ShaFile object
  494. Raises:
  495. KeyError: when the object can not be found
  496. """
  497. return self.object_store[sha]
  498. def parents_provider(self) -> ParentsProvider:
  499. return ParentsProvider(
  500. self.object_store,
  501. grafts=self._graftpoints,
  502. shallows=self.get_shallow(),
  503. )
  504. def get_parents(self, sha: bytes,
  505. commit: Optional[Commit] = None) -> List[bytes]:
  506. """Retrieve the parents of a specific commit.
  507. If the specific commit is a graftpoint, the graft parents
  508. will be returned instead.
  509. Args:
  510. sha: SHA of the commit for which to retrieve the parents
  511. commit: Optional commit matching the sha
  512. Returns: List of parents
  513. """
  514. return self.parents_provider().get_parents(sha, commit)
  515. def get_config(self) -> "ConfigFile":
  516. """Retrieve the config object.
  517. Returns: `ConfigFile` object for the ``.git/config`` file.
  518. """
  519. raise NotImplementedError(self.get_config)
  520. def get_worktree_config(self) -> "ConfigFile":
  521. """Retrieve the worktree config object.
  522. """
  523. raise NotImplementedError(self.get_worktree_config)
  524. def get_description(self):
  525. """Retrieve the description for this repository.
  526. Returns: String with the description of the repository
  527. as set by the user.
  528. """
  529. raise NotImplementedError(self.get_description)
  530. def set_description(self, description):
  531. """Set the description for this repository.
  532. Args:
  533. description: Text to set as description for this repository.
  534. """
  535. raise NotImplementedError(self.set_description)
  536. def get_config_stack(self) -> "StackedConfig":
  537. """Return a config stack for this repository.
  538. This stack accesses the configuration for both this repository
  539. itself (.git/config) and the global configuration, which usually
  540. lives in ~/.gitconfig.
  541. Returns: `Config` instance for this repository
  542. """
  543. from .config import ConfigFile, StackedConfig
  544. local_config = self.get_config()
  545. backends: List[ConfigFile] = [local_config]
  546. if local_config.get_boolean((b"extensions", ), b"worktreeconfig", False):
  547. backends.append(self.get_worktree_config())
  548. backends += StackedConfig.default_backends()
  549. return StackedConfig(backends, writable=local_config)
  550. def get_shallow(self) -> Set[ObjectID]:
  551. """Get the set of shallow commits.
  552. Returns: Set of shallow commits.
  553. """
  554. f = self.get_named_file("shallow")
  555. if f is None:
  556. return set()
  557. with f:
  558. return {line.strip() for line in f}
  559. def update_shallow(self, new_shallow, new_unshallow):
  560. """Update the list of shallow objects.
  561. Args:
  562. new_shallow: Newly shallow objects
  563. new_unshallow: Newly no longer shallow objects
  564. """
  565. shallow = self.get_shallow()
  566. if new_shallow:
  567. shallow.update(new_shallow)
  568. if new_unshallow:
  569. shallow.difference_update(new_unshallow)
  570. if shallow:
  571. self._put_named_file(
  572. "shallow", b"".join([sha + b"\n" for sha in shallow])
  573. )
  574. else:
  575. self._del_named_file("shallow")
  576. def get_peeled(self, ref: Ref) -> ObjectID:
  577. """Get the peeled value of a ref.
  578. Args:
  579. ref: The refname to peel.
  580. Returns: The fully-peeled SHA1 of a tag object, after peeling all
  581. intermediate tags; if the original ref does not point to a tag,
  582. this will equal the original SHA1.
  583. """
  584. cached = self.refs.get_peeled(ref)
  585. if cached is not None:
  586. return cached
  587. return peel_sha(self.object_store, self.refs[ref])[1].id
  588. def get_walker(self, include: Optional[List[bytes]] = None,
  589. *args, **kwargs):
  590. """Obtain a walker for this repository.
  591. Args:
  592. include: Iterable of SHAs of commits to include along with their
  593. ancestors. Defaults to [HEAD]
  594. exclude: Iterable of SHAs of commits to exclude along with their
  595. ancestors, overriding includes.
  596. order: ORDER_* constant specifying the order of results.
  597. Anything other than ORDER_DATE may result in O(n) memory usage.
  598. reverse: If True, reverse the order of output, requiring O(n)
  599. memory.
  600. max_entries: The maximum number of entries to yield, or None for
  601. no limit.
  602. paths: Iterable of file or subtree paths to show entries for.
  603. rename_detector: diff.RenameDetector object for detecting
  604. renames.
  605. follow: If True, follow path across renames/copies. Forces a
  606. default rename_detector.
  607. since: Timestamp to list commits after.
  608. until: Timestamp to list commits before.
  609. queue_cls: A class to use for a queue of commits, supporting the
  610. iterator protocol. The constructor takes a single argument, the
  611. Walker.
  612. Returns: A `Walker` object
  613. """
  614. from .walk import Walker
  615. if include is None:
  616. include = [self.head()]
  617. kwargs["get_parents"] = lambda commit: self.get_parents(commit.id, commit)
  618. return Walker(self.object_store, include, *args, **kwargs)
  619. def __getitem__(self, name: Union[ObjectID, Ref]):
  620. """Retrieve a Git object by SHA1 or ref.
  621. Args:
  622. name: A Git object SHA1 or a ref name
  623. Returns: A `ShaFile` object, such as a Commit or Blob
  624. Raises:
  625. KeyError: when the specified ref or object does not exist
  626. """
  627. if not isinstance(name, bytes):
  628. raise TypeError(
  629. "'name' must be bytestring, not %.80s" % type(name).__name__
  630. )
  631. if len(name) in (20, 40):
  632. try:
  633. return self.object_store[name]
  634. except (KeyError, ValueError):
  635. pass
  636. try:
  637. return self.object_store[self.refs[name]]
  638. except RefFormatError as exc:
  639. raise KeyError(name) from exc
  640. def __contains__(self, name: bytes) -> bool:
  641. """Check if a specific Git object or ref is present.
  642. Args:
  643. name: Git object SHA1 or ref name
  644. """
  645. if len(name) == 20 or (len(name) == 40 and valid_hexsha(name)):
  646. return name in self.object_store or name in self.refs
  647. else:
  648. return name in self.refs
  649. def __setitem__(self, name: bytes, value: Union[ShaFile, bytes]):
  650. """Set a ref.
  651. Args:
  652. name: ref name
  653. value: Ref value - either a ShaFile object, or a hex sha
  654. """
  655. if name.startswith(b"refs/") or name == b"HEAD":
  656. if isinstance(value, ShaFile):
  657. self.refs[name] = value.id
  658. elif isinstance(value, bytes):
  659. self.refs[name] = value
  660. else:
  661. raise TypeError(value)
  662. else:
  663. raise ValueError(name)
  664. def __delitem__(self, name: bytes):
  665. """Remove a ref.
  666. Args:
  667. name: Name of the ref to remove
  668. """
  669. if name.startswith(b"refs/") or name == b"HEAD":
  670. del self.refs[name]
  671. else:
  672. raise ValueError(name)
  673. def _get_user_identity(self, config: "StackedConfig",
  674. kind: Optional[str] = None) -> bytes:
  675. """Determine the identity to use for new commits."""
  676. # TODO(jelmer): Deprecate this function in favor of get_user_identity
  677. return get_user_identity(config)
  678. def _add_graftpoints(self, updated_graftpoints: Dict[bytes, List[bytes]]):
  679. """Add or modify graftpoints
  680. Args:
  681. updated_graftpoints: Dict of commit shas to list of parent shas
  682. """
  683. # Simple validation
  684. for commit, parents in updated_graftpoints.items():
  685. for sha in [commit] + parents:
  686. check_hexsha(sha, "Invalid graftpoint")
  687. self._graftpoints.update(updated_graftpoints)
  688. def _remove_graftpoints(self, to_remove: List[bytes] = []) -> None:
  689. """Remove graftpoints
  690. Args:
  691. to_remove: List of commit shas
  692. """
  693. for sha in to_remove:
  694. del self._graftpoints[sha]
  695. def _read_heads(self, name):
  696. f = self.get_named_file(name)
  697. if f is None:
  698. return []
  699. with f:
  700. return [line.strip() for line in f.readlines() if line.strip()]
  701. def do_commit( # noqa: C901
  702. self,
  703. message: Optional[bytes] = None,
  704. committer: Optional[bytes] = None,
  705. author: Optional[bytes] = None,
  706. commit_timestamp=None,
  707. commit_timezone=None,
  708. author_timestamp=None,
  709. author_timezone=None,
  710. tree: Optional[ObjectID] = None,
  711. encoding: Optional[bytes] = None,
  712. ref: Ref = b"HEAD",
  713. merge_heads: Optional[List[ObjectID]] = None,
  714. no_verify: bool = False,
  715. sign: bool = False,
  716. ):
  717. """Create a new commit.
  718. If not specified, committer and author default to
  719. get_user_identity(..., 'COMMITTER')
  720. and get_user_identity(..., 'AUTHOR') respectively.
  721. Args:
  722. message: Commit message
  723. committer: Committer fullname
  724. author: Author fullname
  725. commit_timestamp: Commit timestamp (defaults to now)
  726. commit_timezone: Commit timestamp timezone (defaults to GMT)
  727. author_timestamp: Author timestamp (defaults to commit
  728. timestamp)
  729. author_timezone: Author timestamp timezone
  730. (defaults to commit timestamp timezone)
  731. tree: SHA1 of the tree root to use (if not specified the
  732. current index will be committed).
  733. encoding: Encoding
  734. ref: Optional ref to commit to (defaults to current branch)
  735. merge_heads: Merge heads (defaults to .git/MERGE_HEAD)
  736. no_verify: Skip pre-commit and commit-msg hooks
  737. sign: GPG Sign the commit (bool, defaults to False,
  738. pass True to use default GPG key,
  739. pass a str containing Key ID to use a specific GPG key)
  740. Returns:
  741. New commit SHA1
  742. """
  743. try:
  744. if not no_verify:
  745. self.hooks["pre-commit"].execute()
  746. except HookError as exc:
  747. raise CommitError(exc) from exc
  748. except KeyError: # no hook defined, silent fallthrough
  749. pass
  750. c = Commit()
  751. if tree is None:
  752. index = self.open_index()
  753. c.tree = index.commit(self.object_store)
  754. else:
  755. if len(tree) != 40:
  756. raise ValueError("tree must be a 40-byte hex sha string")
  757. c.tree = tree
  758. config = self.get_config_stack()
  759. if merge_heads is None:
  760. merge_heads = self._read_heads("MERGE_HEAD")
  761. if committer is None:
  762. committer = get_user_identity(config, kind="COMMITTER")
  763. check_user_identity(committer)
  764. c.committer = committer
  765. if commit_timestamp is None:
  766. # FIXME: Support GIT_COMMITTER_DATE environment variable
  767. commit_timestamp = time.time()
  768. c.commit_time = int(commit_timestamp)
  769. if commit_timezone is None:
  770. # FIXME: Use current user timezone rather than UTC
  771. commit_timezone = 0
  772. c.commit_timezone = commit_timezone
  773. if author is None:
  774. author = get_user_identity(config, kind="AUTHOR")
  775. c.author = author
  776. check_user_identity(author)
  777. if author_timestamp is None:
  778. # FIXME: Support GIT_AUTHOR_DATE environment variable
  779. author_timestamp = commit_timestamp
  780. c.author_time = int(author_timestamp)
  781. if author_timezone is None:
  782. author_timezone = commit_timezone
  783. c.author_timezone = author_timezone
  784. if encoding is None:
  785. try:
  786. encoding = config.get(("i18n",), "commitEncoding")
  787. except KeyError:
  788. pass # No dice
  789. if encoding is not None:
  790. c.encoding = encoding
  791. if message is None:
  792. # FIXME: Try to read commit message from .git/MERGE_MSG
  793. raise ValueError("No commit message specified")
  794. try:
  795. if no_verify:
  796. c.message = message
  797. else:
  798. c.message = self.hooks["commit-msg"].execute(message)
  799. if c.message is None:
  800. c.message = message
  801. except HookError as exc:
  802. raise CommitError(exc) from exc
  803. except KeyError: # no hook defined, message not modified
  804. c.message = message
  805. keyid = sign if isinstance(sign, str) else None
  806. if ref is None:
  807. # Create a dangling commit
  808. c.parents = merge_heads
  809. if sign:
  810. c.sign(keyid)
  811. self.object_store.add_object(c)
  812. else:
  813. try:
  814. old_head = self.refs[ref]
  815. c.parents = [old_head] + merge_heads
  816. if sign:
  817. c.sign(keyid)
  818. self.object_store.add_object(c)
  819. ok = self.refs.set_if_equals(
  820. ref,
  821. old_head,
  822. c.id,
  823. message=b"commit: " + message,
  824. committer=committer,
  825. timestamp=commit_timestamp,
  826. timezone=commit_timezone,
  827. )
  828. except KeyError:
  829. c.parents = merge_heads
  830. if sign:
  831. c.sign(keyid)
  832. self.object_store.add_object(c)
  833. ok = self.refs.add_if_new(
  834. ref,
  835. c.id,
  836. message=b"commit: " + message,
  837. committer=committer,
  838. timestamp=commit_timestamp,
  839. timezone=commit_timezone,
  840. )
  841. if not ok:
  842. # Fail if the atomic compare-and-swap failed, leaving the
  843. # commit and all its objects as garbage.
  844. raise CommitError(f"{ref!r} changed during commit")
  845. self._del_named_file("MERGE_HEAD")
  846. try:
  847. self.hooks["post-commit"].execute()
  848. except HookError as e: # silent failure
  849. warnings.warn("post-commit hook failed: %s" % e, UserWarning)
  850. except KeyError: # no hook defined, silent fallthrough
  851. pass
  852. return c.id
  853. def read_gitfile(f):
  854. """Read a ``.git`` file.
  855. The first line of the file should start with "gitdir: "
  856. Args:
  857. f: File-like object to read from
  858. Returns: A path
  859. """
  860. cs = f.read()
  861. if not cs.startswith("gitdir: "):
  862. raise ValueError("Expected file to start with 'gitdir: '")
  863. return cs[len("gitdir: ") :].rstrip("\n")
  864. class UnsupportedVersion(Exception):
  865. """Unsupported repository version."""
  866. def __init__(self, version):
  867. self.version = version
  868. class UnsupportedExtension(Exception):
  869. """Unsupported repository extension."""
  870. def __init__(self, extension):
  871. self.extension = extension
  872. class Repo(BaseRepo):
  873. """A git repository backed by local disk.
  874. To open an existing repository, call the constructor with
  875. the path of the repository.
  876. To create a new repository, use the Repo.init class method.
  877. Note that a repository object may hold on to resources such
  878. as file handles for performance reasons; call .close() to free
  879. up those resources.
  880. Attributes:
  881. path: Path to the working copy (if it exists) or repository control
  882. directory (if the repository is bare)
  883. bare: Whether this is a bare repository
  884. """
  885. path: str
  886. bare: bool
  887. def __init__(
  888. self,
  889. root: str,
  890. object_store: Optional[PackBasedObjectStore] = None,
  891. bare: Optional[bool] = None
  892. ) -> None:
  893. self.symlink_fn = None
  894. hidden_path = os.path.join(root, CONTROLDIR)
  895. if bare is None:
  896. if (os.path.isfile(hidden_path)
  897. or os.path.isdir(os.path.join(hidden_path, OBJECTDIR))):
  898. bare = False
  899. elif (os.path.isdir(os.path.join(root, OBJECTDIR))
  900. and os.path.isdir(os.path.join(root, REFSDIR))):
  901. bare = True
  902. else:
  903. raise NotGitRepository(
  904. "No git repository was found at %(path)s" % dict(path=root)
  905. )
  906. self.bare = bare
  907. if bare is False:
  908. if os.path.isfile(hidden_path):
  909. with open(hidden_path) as f:
  910. path = read_gitfile(f)
  911. self._controldir = os.path.join(root, path)
  912. else:
  913. self._controldir = hidden_path
  914. else:
  915. self._controldir = root
  916. commondir = self.get_named_file(COMMONDIR)
  917. if commondir is not None:
  918. with commondir:
  919. self._commondir = os.path.join(
  920. self.controldir(),
  921. os.fsdecode(commondir.read().rstrip(b"\r\n")),
  922. )
  923. else:
  924. self._commondir = self._controldir
  925. self.path = root
  926. config = self.get_config()
  927. try:
  928. repository_format_version = config.get(
  929. "core",
  930. "repositoryformatversion"
  931. )
  932. format_version = (
  933. 0
  934. if repository_format_version is None
  935. else int(repository_format_version)
  936. )
  937. except KeyError:
  938. format_version = 0
  939. if format_version not in (0, 1):
  940. raise UnsupportedVersion(format_version)
  941. for extension, _value in config.items((b"extensions", )):
  942. if extension not in (b'worktreeconfig', ):
  943. raise UnsupportedExtension(extension)
  944. if object_store is None:
  945. object_store = DiskObjectStore.from_config(
  946. os.path.join(self.commondir(), OBJECTDIR), config
  947. )
  948. refs = DiskRefsContainer(
  949. self.commondir(), self._controldir, logger=self._write_reflog
  950. )
  951. BaseRepo.__init__(self, object_store, refs)
  952. self._graftpoints = {}
  953. graft_file = self.get_named_file(
  954. os.path.join("info", "grafts"), basedir=self.commondir()
  955. )
  956. if graft_file:
  957. with graft_file:
  958. self._graftpoints.update(parse_graftpoints(graft_file))
  959. graft_file = self.get_named_file("shallow", basedir=self.commondir())
  960. if graft_file:
  961. with graft_file:
  962. self._graftpoints.update(parse_graftpoints(graft_file))
  963. self.hooks["pre-commit"] = PreCommitShellHook(self.path, self.controldir())
  964. self.hooks["commit-msg"] = CommitMsgShellHook(self.controldir())
  965. self.hooks["post-commit"] = PostCommitShellHook(self.controldir())
  966. self.hooks["post-receive"] = PostReceiveShellHook(self.controldir())
  967. def _write_reflog(
  968. self, ref, old_sha, new_sha, committer, timestamp, timezone, message
  969. ):
  970. from .reflog import format_reflog_line
  971. path = os.path.join(self.controldir(), "logs", os.fsdecode(ref))
  972. try:
  973. os.makedirs(os.path.dirname(path))
  974. except FileExistsError:
  975. pass
  976. if committer is None:
  977. config = self.get_config_stack()
  978. committer = self._get_user_identity(config)
  979. check_user_identity(committer)
  980. if timestamp is None:
  981. timestamp = int(time.time())
  982. if timezone is None:
  983. timezone = 0 # FIXME
  984. with open(path, "ab") as f:
  985. f.write(
  986. format_reflog_line(
  987. old_sha, new_sha, committer, timestamp, timezone, message
  988. )
  989. + b"\n"
  990. )
  991. @classmethod
  992. def discover(cls, start="."):
  993. """Iterate parent directories to discover a repository
  994. Return a Repo object for the first parent directory that looks like a
  995. Git repository.
  996. Args:
  997. start: The directory to start discovery from (defaults to '.')
  998. """
  999. remaining = True
  1000. path = os.path.abspath(start)
  1001. while remaining:
  1002. try:
  1003. return cls(path)
  1004. except NotGitRepository:
  1005. path, remaining = os.path.split(path)
  1006. raise NotGitRepository(
  1007. "No git repository was found at %(path)s" % dict(path=start)
  1008. )
  1009. def controldir(self):
  1010. """Return the path of the control directory."""
  1011. return self._controldir
  1012. def commondir(self):
  1013. """Return the path of the common directory.
  1014. For a main working tree, it is identical to controldir().
  1015. For a linked working tree, it is the control directory of the
  1016. main working tree.
  1017. """
  1018. return self._commondir
  1019. def _determine_file_mode(self):
  1020. """Probe the file-system to determine whether permissions can be trusted.
  1021. Returns: True if permissions can be trusted, False otherwise.
  1022. """
  1023. fname = os.path.join(self.path, ".probe-permissions")
  1024. with open(fname, "w") as f:
  1025. f.write("")
  1026. st1 = os.lstat(fname)
  1027. try:
  1028. os.chmod(fname, st1.st_mode ^ stat.S_IXUSR)
  1029. except PermissionError:
  1030. return False
  1031. st2 = os.lstat(fname)
  1032. os.unlink(fname)
  1033. mode_differs = st1.st_mode != st2.st_mode
  1034. st2_has_exec = (st2.st_mode & stat.S_IXUSR) != 0
  1035. return mode_differs and st2_has_exec
  1036. def _put_named_file(self, path, contents):
  1037. """Write a file to the control dir with the given name and contents.
  1038. Args:
  1039. path: The path to the file, relative to the control dir.
  1040. contents: A string to write to the file.
  1041. """
  1042. path = path.lstrip(os.path.sep)
  1043. with GitFile(os.path.join(self.controldir(), path), "wb") as f:
  1044. f.write(contents)
  1045. def _del_named_file(self, path):
  1046. try:
  1047. os.unlink(os.path.join(self.controldir(), path))
  1048. except FileNotFoundError:
  1049. return
  1050. def get_named_file(self, path, basedir=None):
  1051. """Get a file from the control dir with a specific name.
  1052. Although the filename should be interpreted as a filename relative to
  1053. the control dir in a disk-based Repo, the object returned need not be
  1054. pointing to a file in that location.
  1055. Args:
  1056. path: The path to the file, relative to the control dir.
  1057. basedir: Optional argument that specifies an alternative to the
  1058. control dir.
  1059. Returns: An open file object, or None if the file does not exist.
  1060. """
  1061. # TODO(dborowitz): sanitize filenames, since this is used directly by
  1062. # the dumb web serving code.
  1063. if basedir is None:
  1064. basedir = self.controldir()
  1065. path = path.lstrip(os.path.sep)
  1066. try:
  1067. return open(os.path.join(basedir, path), "rb")
  1068. except FileNotFoundError:
  1069. return None
  1070. def index_path(self):
  1071. """Return path to the index file."""
  1072. return os.path.join(self.controldir(), INDEX_FILENAME)
  1073. def open_index(self) -> "Index":
  1074. """Open the index for this repository.
  1075. Raises:
  1076. NoIndexPresent: If no index is present
  1077. Returns: The matching `Index`
  1078. """
  1079. from .index import Index
  1080. if not self.has_index():
  1081. raise NoIndexPresent()
  1082. return Index(self.index_path())
  1083. def has_index(self):
  1084. """Check if an index is present."""
  1085. # Bare repos must never have index files; non-bare repos may have a
  1086. # missing index file, which is treated as empty.
  1087. return not self.bare
  1088. def stage(self, fs_paths: Union[str, bytes, os.PathLike, Iterable[Union[str, bytes, os.PathLike]]]) -> None:
  1089. """Stage a set of paths.
  1090. Args:
  1091. fs_paths: List of paths, relative to the repository path
  1092. """
  1093. root_path_bytes = os.fsencode(self.path)
  1094. if isinstance(fs_paths, (str, bytes, os.PathLike)):
  1095. fs_paths = [fs_paths]
  1096. fs_paths = list(fs_paths)
  1097. from .index import (_fs_to_tree_path, blob_from_path_and_stat,
  1098. index_entry_from_directory, index_entry_from_stat)
  1099. index = self.open_index()
  1100. blob_normalizer = self.get_blob_normalizer()
  1101. for fs_path in fs_paths:
  1102. if not isinstance(fs_path, bytes):
  1103. fs_path = os.fsencode(fs_path)
  1104. if os.path.isabs(fs_path):
  1105. raise ValueError(
  1106. "path %r should be relative to "
  1107. "repository root, not absolute" % fs_path
  1108. )
  1109. tree_path = _fs_to_tree_path(fs_path)
  1110. full_path = os.path.join(root_path_bytes, fs_path)
  1111. try:
  1112. st = os.lstat(full_path)
  1113. except OSError:
  1114. # File no longer exists
  1115. try:
  1116. del index[tree_path]
  1117. except KeyError:
  1118. pass # already removed
  1119. else:
  1120. if stat.S_ISDIR(st.st_mode):
  1121. entry = index_entry_from_directory(st, full_path)
  1122. if entry:
  1123. index[tree_path] = entry
  1124. else:
  1125. try:
  1126. del index[tree_path]
  1127. except KeyError:
  1128. pass
  1129. elif not stat.S_ISREG(st.st_mode) and not stat.S_ISLNK(st.st_mode):
  1130. try:
  1131. del index[tree_path]
  1132. except KeyError:
  1133. pass
  1134. else:
  1135. blob = blob_from_path_and_stat(full_path, st)
  1136. blob = blob_normalizer.checkin_normalize(blob, fs_path)
  1137. self.object_store.add_object(blob)
  1138. index[tree_path] = index_entry_from_stat(st, blob.id, 0)
  1139. index.write()
  1140. def unstage(self, fs_paths: List[str]):
  1141. """unstage specific file in the index
  1142. Args:
  1143. fs_paths: a list of files to unstage,
  1144. relative to the repository path
  1145. """
  1146. from .index import IndexEntry, _fs_to_tree_path
  1147. index = self.open_index()
  1148. try:
  1149. tree_id = self[b'HEAD'].tree
  1150. except KeyError:
  1151. # no head mean no commit in the repo
  1152. for fs_path in fs_paths:
  1153. tree_path = _fs_to_tree_path(fs_path)
  1154. del index[tree_path]
  1155. index.write()
  1156. return
  1157. for fs_path in fs_paths:
  1158. tree_path = _fs_to_tree_path(fs_path)
  1159. try:
  1160. tree = self.object_store[tree_id]
  1161. assert isinstance(tree, Tree)
  1162. tree_entry = tree.lookup_path(
  1163. self.object_store.__getitem__, tree_path)
  1164. except KeyError:
  1165. # if tree_entry didn't exist, this file was being added, so
  1166. # remove index entry
  1167. try:
  1168. del index[tree_path]
  1169. continue
  1170. except KeyError as exc:
  1171. raise KeyError(
  1172. "file '%s' not in index" % (tree_path.decode())
  1173. ) from exc
  1174. st = None
  1175. try:
  1176. st = os.lstat(os.path.join(self.path, fs_path))
  1177. except FileNotFoundError:
  1178. pass
  1179. index_entry = IndexEntry(
  1180. ctime=(self[b'HEAD'].commit_time, 0),
  1181. mtime=(self[b'HEAD'].commit_time, 0),
  1182. dev=st.st_dev if st else 0,
  1183. ino=st.st_ino if st else 0,
  1184. mode=tree_entry[0],
  1185. uid=st.st_uid if st else 0,
  1186. gid=st.st_gid if st else 0,
  1187. size=len(self[tree_entry[1]].data),
  1188. sha=tree_entry[1],
  1189. flags=0,
  1190. extended_flags=0
  1191. )
  1192. index[tree_path] = index_entry
  1193. index.write()
  1194. def clone(
  1195. self,
  1196. target_path,
  1197. mkdir=True,
  1198. bare=False,
  1199. origin=b"origin",
  1200. checkout=None,
  1201. branch=None,
  1202. progress=None,
  1203. depth=None,
  1204. ):
  1205. """Clone this repository.
  1206. Args:
  1207. target_path: Target path
  1208. mkdir: Create the target directory
  1209. bare: Whether to create a bare repository
  1210. checkout: Whether or not to check-out HEAD after cloning
  1211. origin: Base name for refs in target repository
  1212. cloned from this repository
  1213. branch: Optional branch or tag to be used as HEAD in the new repository
  1214. instead of this repository's HEAD.
  1215. progress: Optional progress function
  1216. depth: Depth at which to fetch
  1217. Returns: Created repository as `Repo`
  1218. """
  1219. encoded_path = os.fsencode(self.path)
  1220. if mkdir:
  1221. os.mkdir(target_path)
  1222. try:
  1223. target = None
  1224. if not bare:
  1225. target = Repo.init(target_path)
  1226. if checkout is None:
  1227. checkout = True
  1228. else:
  1229. if checkout:
  1230. raise ValueError("checkout and bare are incompatible")
  1231. target = Repo.init_bare(target_path)
  1232. target_config = target.get_config()
  1233. target_config.set((b"remote", origin), b"url", encoded_path)
  1234. target_config.set(
  1235. (b"remote", origin),
  1236. b"fetch",
  1237. b"+refs/heads/*:refs/remotes/" + origin + b"/*",
  1238. )
  1239. target_config.write_to_path()
  1240. ref_message = b"clone: from " + encoded_path
  1241. self.fetch(target, depth=depth)
  1242. target.refs.import_refs(
  1243. b"refs/remotes/" + origin,
  1244. self.refs.as_dict(b"refs/heads"),
  1245. message=ref_message,
  1246. )
  1247. target.refs.import_refs(
  1248. b"refs/tags", self.refs.as_dict(b"refs/tags"), message=ref_message
  1249. )
  1250. head_chain, origin_sha = self.refs.follow(b"HEAD")
  1251. origin_head = head_chain[-1] if head_chain else None
  1252. if origin_sha and not origin_head:
  1253. # set detached HEAD
  1254. target.refs[b"HEAD"] = origin_sha
  1255. else:
  1256. _set_origin_head(target.refs, origin, origin_head)
  1257. head_ref = _set_default_branch(
  1258. target.refs, origin, origin_head, branch, ref_message
  1259. )
  1260. # Update target head
  1261. if head_ref:
  1262. head = _set_head(target.refs, head_ref, ref_message)
  1263. else:
  1264. head = None
  1265. if checkout and head is not None:
  1266. target.reset_index()
  1267. except BaseException:
  1268. if target is not None:
  1269. target.close()
  1270. if mkdir:
  1271. import shutil
  1272. shutil.rmtree(target_path)
  1273. raise
  1274. return target
  1275. def reset_index(self, tree: Optional[bytes] = None):
  1276. """Reset the index back to a specific tree.
  1277. Args:
  1278. tree: Tree SHA to reset to, None for current HEAD tree.
  1279. """
  1280. from .index import (build_index_from_tree,
  1281. validate_path_element_default,
  1282. validate_path_element_ntfs)
  1283. if tree is None:
  1284. head = self[b"HEAD"]
  1285. if isinstance(head, Tag):
  1286. _cls, obj = head.object
  1287. head = self.get_object(obj)
  1288. tree = head.tree
  1289. config = self.get_config()
  1290. honor_filemode = config.get_boolean(b"core", b"filemode", os.name != "nt")
  1291. if config.get_boolean(b"core", b"core.protectNTFS", os.name == "nt"):
  1292. validate_path_element = validate_path_element_ntfs
  1293. else:
  1294. validate_path_element = validate_path_element_default
  1295. return build_index_from_tree(
  1296. self.path,
  1297. self.index_path(),
  1298. self.object_store,
  1299. tree,
  1300. honor_filemode=honor_filemode,
  1301. validate_path_element=validate_path_element,
  1302. symlink_fn=self.symlink_fn,
  1303. )
  1304. def get_worktree_config(self) -> "ConfigFile":
  1305. from .config import ConfigFile
  1306. path = os.path.join(self.commondir(), "config.worktree")
  1307. try:
  1308. return ConfigFile.from_path(path)
  1309. except FileNotFoundError:
  1310. cf = ConfigFile()
  1311. cf.path = path
  1312. return cf
  1313. def get_config(self) -> "ConfigFile":
  1314. """Retrieve the config object.
  1315. Returns: `ConfigFile` object for the ``.git/config`` file.
  1316. """
  1317. from .config import ConfigFile
  1318. path = os.path.join(self._commondir, "config")
  1319. try:
  1320. return ConfigFile.from_path(path)
  1321. except FileNotFoundError:
  1322. ret = ConfigFile()
  1323. ret.path = path
  1324. return ret
  1325. def get_description(self):
  1326. """Retrieve the description of this repository.
  1327. Returns: A string describing the repository or None.
  1328. """
  1329. path = os.path.join(self._controldir, "description")
  1330. try:
  1331. with GitFile(path, "rb") as f:
  1332. return f.read()
  1333. except FileNotFoundError:
  1334. return None
  1335. def __repr__(self):
  1336. return "<Repo at %r>" % self.path
  1337. def set_description(self, description):
  1338. """Set the description for this repository.
  1339. Args:
  1340. description: Text to set as description for this repository.
  1341. """
  1342. self._put_named_file("description", description)
  1343. @classmethod
  1344. def _init_maybe_bare(
  1345. cls, path, controldir, bare, object_store=None, config=None,
  1346. default_branch=None):
  1347. for d in BASE_DIRECTORIES:
  1348. os.mkdir(os.path.join(controldir, *d))
  1349. if object_store is None:
  1350. object_store = DiskObjectStore.init(os.path.join(controldir, OBJECTDIR))
  1351. ret = cls(path, bare=bare, object_store=object_store)
  1352. if default_branch is None:
  1353. if config is None:
  1354. from .config import StackedConfig
  1355. config = StackedConfig.default()
  1356. try:
  1357. default_branch = config.get("init", "defaultBranch")
  1358. except KeyError:
  1359. default_branch = DEFAULT_BRANCH
  1360. ret.refs.set_symbolic_ref(b"HEAD", LOCAL_BRANCH_PREFIX + default_branch)
  1361. ret._init_files(bare)
  1362. return ret
  1363. @classmethod
  1364. def init(cls, path: str, *, mkdir: bool = False, config=None, default_branch=None) -> "Repo":
  1365. """Create a new repository.
  1366. Args:
  1367. path: Path in which to create the repository
  1368. mkdir: Whether to create the directory
  1369. Returns: `Repo` instance
  1370. """
  1371. if mkdir:
  1372. os.mkdir(path)
  1373. controldir = os.path.join(path, CONTROLDIR)
  1374. os.mkdir(controldir)
  1375. _set_filesystem_hidden(controldir)
  1376. return cls._init_maybe_bare(
  1377. path, controldir, False, config=config,
  1378. default_branch=default_branch)
  1379. @classmethod
  1380. def _init_new_working_directory(cls, path, main_repo, identifier=None, mkdir=False):
  1381. """Create a new working directory linked to a repository.
  1382. Args:
  1383. path: Path in which to create the working tree.
  1384. main_repo: Main repository to reference
  1385. identifier: Worktree identifier
  1386. mkdir: Whether to create the directory
  1387. Returns: `Repo` instance
  1388. """
  1389. if mkdir:
  1390. os.mkdir(path)
  1391. if identifier is None:
  1392. identifier = os.path.basename(path)
  1393. main_worktreesdir = os.path.join(main_repo.controldir(), WORKTREES)
  1394. worktree_controldir = os.path.join(main_worktreesdir, identifier)
  1395. gitdirfile = os.path.join(path, CONTROLDIR)
  1396. with open(gitdirfile, "wb") as f:
  1397. f.write(b"gitdir: " + os.fsencode(worktree_controldir) + b"\n")
  1398. try:
  1399. os.mkdir(main_worktreesdir)
  1400. except FileExistsError:
  1401. pass
  1402. try:
  1403. os.mkdir(worktree_controldir)
  1404. except FileExistsError:
  1405. pass
  1406. with open(os.path.join(worktree_controldir, GITDIR), "wb") as f:
  1407. f.write(os.fsencode(gitdirfile) + b"\n")
  1408. with open(os.path.join(worktree_controldir, COMMONDIR), "wb") as f:
  1409. f.write(b"../..\n")
  1410. with open(os.path.join(worktree_controldir, "HEAD"), "wb") as f:
  1411. f.write(main_repo.head() + b"\n")
  1412. r = cls(path)
  1413. r.reset_index()
  1414. return r
  1415. @classmethod
  1416. def init_bare(cls, path, *, mkdir=False, object_store=None, config=None, default_branch=None):
  1417. """Create a new bare repository.
  1418. ``path`` should already exist and be an empty directory.
  1419. Args:
  1420. path: Path to create bare repository in
  1421. Returns: a `Repo` instance
  1422. """
  1423. if mkdir:
  1424. os.mkdir(path)
  1425. return cls._init_maybe_bare(path, path, True, object_store=object_store, config=config, default_branch=default_branch)
  1426. create = init_bare
  1427. def close(self):
  1428. """Close any files opened by this repository."""
  1429. self.object_store.close()
  1430. def __enter__(self):
  1431. return self
  1432. def __exit__(self, exc_type, exc_val, exc_tb):
  1433. self.close()
  1434. def get_blob_normalizer(self):
  1435. """Return a BlobNormalizer object"""
  1436. # TODO Parse the git attributes files
  1437. git_attributes = {}
  1438. config_stack = self.get_config_stack()
  1439. try:
  1440. tree = self.object_store[self.refs[b"HEAD"]].tree
  1441. return TreeBlobNormalizer(
  1442. config_stack,
  1443. git_attributes,
  1444. self.object_store,
  1445. tree,
  1446. )
  1447. except KeyError:
  1448. return BlobNormalizer(config_stack, git_attributes)
  1449. class MemoryRepo(BaseRepo):
  1450. """Repo that stores refs, objects, and named files in memory.
  1451. MemoryRepos are always bare: they have no working tree and no index, since
  1452. those have a stronger dependency on the filesystem.
  1453. """
  1454. def __init__(self):
  1455. from .config import ConfigFile
  1456. self._reflog = []
  1457. refs_container = DictRefsContainer({}, logger=self._append_reflog)
  1458. BaseRepo.__init__(self, MemoryObjectStore(), refs_container)
  1459. self._named_files = {}
  1460. self.bare = True
  1461. self._config = ConfigFile()
  1462. self._description = None
  1463. def _append_reflog(self, *args):
  1464. self._reflog.append(args)
  1465. def set_description(self, description):
  1466. self._description = description
  1467. def get_description(self):
  1468. return self._description
  1469. def _determine_file_mode(self):
  1470. """Probe the file-system to determine whether permissions can be trusted.
  1471. Returns: True if permissions can be trusted, False otherwise.
  1472. """
  1473. return sys.platform != "win32"
  1474. def _put_named_file(self, path, contents):
  1475. """Write a file to the control dir with the given name and contents.
  1476. Args:
  1477. path: The path to the file, relative to the control dir.
  1478. contents: A string to write to the file.
  1479. """
  1480. self._named_files[path] = contents
  1481. def _del_named_file(self, path):
  1482. try:
  1483. del self._named_files[path]
  1484. except KeyError:
  1485. pass
  1486. def get_named_file(self, path, basedir=None):
  1487. """Get a file from the control dir with a specific name.
  1488. Although the filename should be interpreted as a filename relative to
  1489. the control dir in a disk-baked Repo, the object returned need not be
  1490. pointing to a file in that location.
  1491. Args:
  1492. path: The path to the file, relative to the control dir.
  1493. Returns: An open file object, or None if the file does not exist.
  1494. """
  1495. contents = self._named_files.get(path, None)
  1496. if contents is None:
  1497. return None
  1498. return BytesIO(contents)
  1499. def open_index(self):
  1500. """Fail to open index for this repo, since it is bare.
  1501. Raises:
  1502. NoIndexPresent: Raised when no index is present
  1503. """
  1504. raise NoIndexPresent()
  1505. def get_config(self):
  1506. """Retrieve the config object.
  1507. Returns: `ConfigFile` object.
  1508. """
  1509. return self._config
  1510. @classmethod
  1511. def init_bare(cls, objects, refs):
  1512. """Create a new bare repository in memory.
  1513. Args:
  1514. objects: Objects for the new repository,
  1515. as iterable
  1516. refs: Refs as dictionary, mapping names
  1517. to object SHA1s
  1518. """
  1519. ret = cls()
  1520. for obj in objects:
  1521. ret.object_store.add_object(obj)
  1522. for refname, sha in refs.items():
  1523. ret.refs.add_if_new(refname, sha)
  1524. ret._init_files(bare=True)
  1525. return ret