localrepo.py
3769 lines
| 134.5 KiB
| text/x-python
|
PythonLexer
/ mercurial / localrepo.py
mpm@selenic.com
|
r1089 | # localrepo.py - read/write repository class for mercurial | ||
# | ||||
Raphaël Gomès
|
r47575 | # Copyright 2005-2007 Olivia Mackall <olivia@selenic.com> | ||
mpm@selenic.com
|
r1089 | # | ||
Martin Geisler
|
r8225 | # This software may be used and distributed according to the terms of the | ||
Matt Mackall
|
r10263 | # GNU General Public License version 2 or any later version. | ||
Gregory Szorc
|
r27522 | |||
from __future__ import absolute_import | ||||
import errno | ||||
Augie Fackler
|
r45987 | import functools | ||
Gregory Szorc
|
r27522 | import os | ||
import random | ||||
Gregory Szorc
|
r37648 | import sys | ||
Gregory Szorc
|
r27522 | import time | ||
import weakref | ||||
from .i18n import _ | ||||
from .node import ( | ||||
Martin von Zweigbergk
|
r39994 | bin, | ||
Gregory Szorc
|
r27522 | hex, | ||
Martin von Zweigbergk
|
r39994 | nullrev, | ||
Joerg Sonnenberger
|
r47538 | sha1nodeconstants, | ||
Gregory Szorc
|
r27522 | short, | ||
) | ||||
Gregory Szorc
|
r43360 | from .pycompat import ( | ||
delattr, | ||||
getattr, | ||||
) | ||||
Gregory Szorc
|
r27522 | from . import ( | ||
bookmarks, | ||||
branchmap, | ||||
bundle2, | ||||
r46370 | bundlecaches, | |||
Gregory Szorc
|
r27522 | changegroup, | ||
Pierre-Yves David
|
r31111 | color, | ||
r45759 | commit, | |||
Gregory Szorc
|
r27522 | context, | ||
dirstate, | ||||
Augie Fackler
|
r30492 | dirstateguard, | ||
Durham Goode
|
r34099 | discovery, | ||
Gregory Szorc
|
r27522 | encoding, | ||
error, | ||||
exchange, | ||||
extensions, | ||||
filelog, | ||||
hook, | ||||
lock as lockmod, | ||||
match as matchmod, | ||||
Augie Fackler
|
r45383 | mergestate as mergestatemod, | ||
Augie Fackler
|
r30496 | mergeutil, | ||
Gregory Szorc
|
r27522 | namespaces, | ||
Martin von Zweigbergk
|
r36489 | narrowspec, | ||
Gregory Szorc
|
r27522 | obsolete, | ||
pathutil, | ||||
phases, | ||||
pushkey, | ||||
Augie Fackler
|
r31508 | pycompat, | ||
r44727 | rcutil, | |||
Gregory Szorc
|
r27522 | repoview, | ||
Pulkit Goyal
|
r45932 | requirements as requirementsmod, | ||
r47028 | revlog, | |||
Gregory Szorc
|
r27522 | revset, | ||
Yuya Nishihara
|
r31024 | revsetlang, | ||
Gregory Szorc
|
r27522 | scmutil, | ||
Gregory Szorc
|
r33373 | sparse, | ||
Gregory Szorc
|
r39733 | store as storemod, | ||
Yuya Nishihara
|
r36026 | subrepoutil, | ||
Gregory Szorc
|
r27522 | tags as tagsmod, | ||
transaction, | ||||
FUJIWARA Katsunori
|
r31054 | txnutil, | ||
Gregory Szorc
|
r27522 | util, | ||
Pierre-Yves David
|
r31231 | vfs as vfsmod, | ||
Charles Chamberlain
|
r47664 | wireprototypes, | ||
Gregory Szorc
|
r27522 | ) | ||
Pulkit Goyal
|
r43078 | |||
from .interfaces import ( | ||||
repository, | ||||
Pulkit Goyal
|
r43079 | util as interfaceutil, | ||
Pulkit Goyal
|
r43078 | ) | ||
Yuya Nishihara
|
r37102 | from .utils import ( | ||
Augie Fackler
|
r44517 | hashutil, | ||
Yuya Nishihara
|
r37138 | procutil, | ||
Yuya Nishihara
|
r37102 | stringutil, | ||
r47669 | urlutil, | |||
Yuya Nishihara
|
r37102 | ) | ||
Gregory Szorc
|
r27522 | |||
Kyle Lippincott
|
r47349 | from .revlogutils import ( | ||
concurrency_checker as revlogchecker, | ||||
constants as revlogconst, | ||||
Raphaël Gomès
|
r47848 | sidedata as sidedatamod, | ||
Kyle Lippincott
|
r47349 | ) | ||
Boris Feld
|
r39542 | |||
Gregory Szorc
|
r27522 | release = lockmod.release | ||
timeless
|
r28883 | urlerr = util.urlerr | ||
urlreq = util.urlreq | ||||
Ronny Pfannschmidt
|
r8109 | |||
FUJIWARA Katsunori
|
r33277 | # set of (path, vfs-location) tuples. vfs-location is: | ||
# - 'plain for vfs relative paths | ||||
# - '' for svfs relative paths | ||||
_cachedfiles = set() | ||||
Augie Fackler
|
r43346 | |||
FUJIWARA Katsunori
|
r33173 | class _basefilecache(scmutil.filecache): | ||
Augie Fackler
|
r46554 | """All filecache usage on repo are done for logic that should be unfiltered""" | ||
Augie Fackler
|
r43346 | |||
Pierre-Yves David
|
r18014 | def __get__(self, repo, type=None): | ||
Martijn Pieters
|
r29373 | if repo is None: | ||
return self | ||||
Yuya Nishihara
|
r40454 | # proxy to unfiltered __dict__ since filtered repo has no entry | ||
Yuya Nishihara
|
r40453 | unfi = repo.unfiltered() | ||
try: | ||||
return unfi.__dict__[self.sname] | ||||
except KeyError: | ||||
pass | ||||
return super(_basefilecache, self).__get__(unfi, type) | ||||
Yuya Nishihara
|
r40454 | |||
def set(self, repo, value): | ||||
return super(_basefilecache, self).set(repo.unfiltered(), value) | ||||
Pierre-Yves David
|
r18014 | |||
Augie Fackler
|
r43346 | |||
FUJIWARA Katsunori
|
r33173 | class repofilecache(_basefilecache): | ||
"""filecache for files in .hg but outside of .hg/store""" | ||||
Augie Fackler
|
r43346 | |||
FUJIWARA Katsunori
|
r33277 | def __init__(self, *paths): | ||
super(repofilecache, self).__init__(*paths) | ||||
for path in paths: | ||||
Augie Fackler
|
r43347 | _cachedfiles.add((path, b'plain')) | ||
FUJIWARA Katsunori
|
r33277 | |||
FUJIWARA Katsunori
|
r33173 | def join(self, obj, fname): | ||
return obj.vfs.join(fname) | ||||
Augie Fackler
|
r43346 | |||
FUJIWARA Katsunori
|
r33173 | class storecache(_basefilecache): | ||
Idan Kamara
|
r16198 | """filecache for files in the store""" | ||
Augie Fackler
|
r43346 | |||
FUJIWARA Katsunori
|
r33277 | def __init__(self, *paths): | ||
super(storecache, self).__init__(*paths) | ||||
for path in paths: | ||||
Augie Fackler
|
r43347 | _cachedfiles.add((path, b'')) | ||
FUJIWARA Katsunori
|
r33277 | |||
Idan Kamara
|
r16198 | def join(self, obj, fname): | ||
return obj.sjoin(fname) | ||||
Augie Fackler
|
r43346 | |||
r42539 | class mixedrepostorecache(_basefilecache): | |||
"""filecache for a mix files in .hg/store and outside""" | ||||
Augie Fackler
|
r43346 | |||
r42539 | def __init__(self, *pathsandlocations): | |||
# scmutil.filecache only uses the path for passing back into our | ||||
# join(), so we can safely pass a list of paths and locations | ||||
super(mixedrepostorecache, self).__init__(*pathsandlocations) | ||||
Martin von Zweigbergk
|
r42632 | _cachedfiles.update(pathsandlocations) | ||
r42539 | ||||
def join(self, obj, fnameandlocation): | ||||
fname, location = fnameandlocation | ||||
Augie Fackler
|
r43347 | if location == b'plain': | ||
r42539 | return obj.vfs.join(fname) | |||
else: | ||||
Augie Fackler
|
r43347 | if location != b'': | ||
Augie Fackler
|
r43346 | raise error.ProgrammingError( | ||
Augie Fackler
|
r43347 | b'unexpected location: %s' % location | ||
Augie Fackler
|
r43346 | ) | ||
r42539 | return obj.sjoin(fname) | |||
Augie Fackler
|
r43346 | |||
FUJIWARA Katsunori
|
r33382 | def isfilecached(repo, name): | ||
"""check if a repo has already cached "name" filecache-ed property | ||||
This returns (cachedobj-or-None, iscached) tuple. | ||||
""" | ||||
cacheentry = repo.unfiltered()._filecache.get(name, None) | ||||
if not cacheentry: | ||||
return None, False | ||||
return cacheentry.obj, True | ||||
Augie Fackler
|
r43346 | |||
Augie Fackler
|
r29104 | class unfilteredpropertycache(util.propertycache): | ||
Pierre-Yves David
|
r18013 | """propertycache that apply to unfiltered repo only""" | ||
def __get__(self, repo, type=None): | ||||
Pierre-Yves David
|
r19846 | unfi = repo.unfiltered() | ||
if unfi is repo: | ||||
return super(unfilteredpropertycache, self).__get__(unfi) | ||||
return getattr(unfi, self.name) | ||||
Pierre-Yves David
|
r18013 | |||
Augie Fackler
|
r43346 | |||
Augie Fackler
|
r29104 | class filteredpropertycache(util.propertycache): | ||
Pierre-Yves David
|
r18013 | """propertycache that must take filtering in account""" | ||
def cachevalue(self, obj, value): | ||||
object.__setattr__(obj, self.name, value) | ||||
def hasunfilteredcache(repo, name): | ||||
Mads Kiilerich
|
r18644 | """check if a repo has an unfilteredpropertycache value for <name>""" | ||
Pierre-Yves David
|
r18013 | return name in vars(repo.unfiltered()) | ||
Augie Fackler
|
r43346 | |||
Pierre-Yves David
|
r18016 | def unfilteredmethod(orig): | ||
Pierre-Yves David
|
r17994 | """decorate method that always need to be run on unfiltered version""" | ||
Augie Fackler
|
r43346 | |||
Augie Fackler
|
r45987 | @functools.wraps(orig) | ||
Pierre-Yves David
|
r17994 | def wrapper(repo, *args, **kwargs): | ||
return orig(repo.unfiltered(), *args, **kwargs) | ||||
Augie Fackler
|
r43346 | |||
Pierre-Yves David
|
r17994 | return wrapper | ||
Augie Fackler
|
r43346 | |||
moderncaps = { | ||||
Augie Fackler
|
r43347 | b'lookup', | ||
b'branchmap', | ||||
b'pushkey', | ||||
b'known', | ||||
b'getbundle', | ||||
b'unbundle', | ||||
Augie Fackler
|
r43346 | } | ||
Augie Fackler
|
r43347 | legacycaps = moderncaps.union({b'changegroupsubset'}) | ||
Peter Arrenbrecht
|
r17192 | |||
Augie Fackler
|
r43346 | |||
Gregory Szorc
|
r37828 | @interfaceutil.implementer(repository.ipeercommandexecutor) | ||
Gregory Szorc
|
r37648 | class localcommandexecutor(object): | ||
def __init__(self, peer): | ||||
self._peer = peer | ||||
self._sent = False | ||||
self._closed = False | ||||
def __enter__(self): | ||||
return self | ||||
def __exit__(self, exctype, excvalue, exctb): | ||||
self.close() | ||||
def callcommand(self, command, args): | ||||
if self._sent: | ||||
Augie Fackler
|
r43346 | raise error.ProgrammingError( | ||
Martin von Zweigbergk
|
r43387 | b'callcommand() cannot be used after sendcommands()' | ||
Augie Fackler
|
r43346 | ) | ||
Gregory Szorc
|
r37648 | |||
if self._closed: | ||||
Augie Fackler
|
r43346 | raise error.ProgrammingError( | ||
Martin von Zweigbergk
|
r43387 | b'callcommand() cannot be used after close()' | ||
Augie Fackler
|
r43346 | ) | ||
Gregory Szorc
|
r37648 | |||
# We don't need to support anything fancy. Just call the named | ||||
# method on the peer and return a resolved future. | ||||
fn = getattr(self._peer, pycompat.sysstr(command)) | ||||
f = pycompat.futures.Future() | ||||
try: | ||||
Augie Fackler
|
r37688 | result = fn(**pycompat.strkwargs(args)) | ||
Gregory Szorc
|
r37648 | except Exception: | ||
Augie Fackler
|
r37687 | pycompat.future_set_exception_info(f, sys.exc_info()[1:]) | ||
Gregory Szorc
|
r37648 | else: | ||
f.set_result(result) | ||||
return f | ||||
def sendcommands(self): | ||||
self._sent = True | ||||
def close(self): | ||||
self._closed = True | ||||
Augie Fackler
|
r43346 | |||
Gregory Szorc
|
r37828 | @interfaceutil.implementer(repository.ipeercommands) | ||
Gregory Szorc
|
r33802 | class localpeer(repository.peer): | ||
Peter Arrenbrecht
|
r17192 | '''peer for a local repo; reflects only the most recent API''' | ||
Pierre-Yves David
|
r31412 | def __init__(self, repo, caps=None): | ||
Gregory Szorc
|
r33802 | super(localpeer, self).__init__() | ||
Pierre-Yves David
|
r31412 | if caps is None: | ||
caps = moderncaps.copy() | ||||
Augie Fackler
|
r43347 | self._repo = repo.filtered(b'served') | ||
Gregory Szorc
|
r37337 | self.ui = repo.ui | ||
Raphaël Gomès
|
r47447 | |||
if repo._wanted_sidedata: | ||||
formatted = bundle2.format_remote_wanted_sidedata(repo) | ||||
caps.add(b'exp-wanted-sidedata=' + formatted) | ||||
Peter Arrenbrecht
|
r17192 | self._caps = repo._restrictcapabilities(caps) | ||
Gregory Szorc
|
r33802 | # Begin of _basepeer interface. | ||
def url(self): | ||||
return self._repo.url() | ||||
def local(self): | ||||
return self._repo | ||||
def peer(self): | ||||
return self | ||||
def canpush(self): | ||||
return True | ||||
Peter Arrenbrecht
|
r17192 | def close(self): | ||
self._repo.close() | ||||
Gregory Szorc
|
r33802 | # End of _basepeer interface. | ||
Peter Arrenbrecht
|
r17192 | |||
Gregory Szorc
|
r33802 | # Begin of _basewirecommands interface. | ||
Peter Arrenbrecht
|
r17192 | |||
def branchmap(self): | ||||
Pierre-Yves David
|
r18279 | return self._repo.branchmap() | ||
Peter Arrenbrecht
|
r17192 | |||
Gregory Szorc
|
r33802 | def capabilities(self): | ||
return self._caps | ||||
Peter Arrenbrecht
|
r17192 | |||
Gregory Szorc
|
r37667 | def clonebundles(self): | ||
r46370 | return self._repo.tryread(bundlecaches.CB_MANIFEST_FILE) | |||
Gregory Szorc
|
r37667 | |||
Gregory Szorc
|
r33802 | def debugwireargs(self, one, two, three=None, four=None, five=None): | ||
"""Used to test argument passing over the wire""" | ||||
Augie Fackler
|
r43347 | return b"%s %s %s %s %s" % ( | ||
Augie Fackler
|
r43346 | one, | ||
two, | ||||
pycompat.bytestr(three), | ||||
pycompat.bytestr(four), | ||||
pycompat.bytestr(five), | ||||
) | ||||
def getbundle( | ||||
Raphaël Gomès
|
r47445 | self, | ||
source, | ||||
heads=None, | ||||
common=None, | ||||
bundlecaps=None, | ||||
remote_sidedata=None, | ||||
**kwargs | ||||
Augie Fackler
|
r43346 | ): | ||
chunks = exchange.getbundlechunks( | ||||
self._repo, | ||||
source, | ||||
heads=heads, | ||||
common=common, | ||||
bundlecaps=bundlecaps, | ||||
Raphaël Gomès
|
r47445 | remote_sidedata=remote_sidedata, | ||
Augie Fackler
|
r43346 | **kwargs | ||
)[1] | ||||
Gregory Szorc
|
r30187 | cb = util.chunkbuffer(chunks) | ||
Martin von Zweigbergk
|
r32149 | if exchange.bundle2requested(bundlecaps): | ||
Pierre-Yves David
|
r21068 | # When requesting a bundle2, getbundle returns a stream to make the | ||
# wire level function happier. We need to build a proper object | ||||
# from it in local peer. | ||||
Gregory Szorc
|
r30187 | return bundle2.getunbundler(self.ui, cb) | ||
else: | ||||
Augie Fackler
|
r43347 | return changegroup.getunbundler(b'01', cb, None) | ||
Peter Arrenbrecht
|
r17192 | |||
Gregory Szorc
|
r33802 | def heads(self): | ||
return self._repo.heads() | ||||
def known(self, nodes): | ||||
return self._repo.known(nodes) | ||||
def listkeys(self, namespace): | ||||
return self._repo.listkeys(namespace) | ||||
def lookup(self, key): | ||||
return self._repo.lookup(key) | ||||
def pushkey(self, namespace, key, old, new): | ||||
return self._repo.pushkey(namespace, key, old, new) | ||||
def stream_out(self): | ||||
Martin von Zweigbergk
|
r43387 | raise error.Abort(_(b'cannot perform stream clone against local peer')) | ||
Peter Arrenbrecht
|
r17192 | |||
Gregory Szorc
|
r37664 | def unbundle(self, bundle, heads, url): | ||
Pierre-Yves David
|
r20969 | """apply a bundle on a repo | ||
This function handles the repo locking itself.""" | ||||
try: | ||||
Pierre-Yves David
|
r24798 | try: | ||
Gregory Szorc
|
r37664 | bundle = exchange.readbundle(self.ui, bundle, None) | ||
Augie Fackler
|
r43347 | ret = exchange.unbundle(self._repo, bundle, heads, b'push', url) | ||
if util.safehasattr(ret, b'getchunks'): | ||||
Pierre-Yves David
|
r24798 | # This is a bundle20 object, turn it into an unbundler. | ||
# This little dance should be dropped eventually when the | ||||
# API is finally improved. | ||||
stream = util.chunkbuffer(ret.getchunks()) | ||||
ret = bundle2.getunbundler(self.ui, stream) | ||||
return ret | ||||
Gregory Szorc
|
r25660 | except Exception as exc: | ||
Pierre-Yves David
|
r24799 | # If the exception contains output salvaged from a bundle2 | ||
# reply, we need to make sure it is printed before continuing | ||||
# to fail. So we build a bundle2 with such output and consume | ||||
# it directly. | ||||
# | ||||
# This is not very elegant but allows a "simple" solution for | ||||
# issue4594 | ||||
output = getattr(exc, '_bundle2salvagedoutput', ()) | ||||
if output: | ||||
bundler = bundle2.bundle20(self._repo.ui) | ||||
for out in output: | ||||
bundler.addpart(out) | ||||
stream = util.chunkbuffer(bundler.getchunks()) | ||||
b = bundle2.getunbundler(self.ui, stream) | ||||
bundle2.processbundle(self._repo, b) | ||||
Pierre-Yves David
|
r24798 | raise | ||
Gregory Szorc
|
r25660 | except error.PushRaced as exc: | ||
Augie Fackler
|
r43346 | raise error.ResponseError( | ||
Augie Fackler
|
r43347 | _(b'push failed:'), stringutil.forcebytestr(exc) | ||
Augie Fackler
|
r43346 | ) | ||
Pierre-Yves David
|
r20969 | |||
Gregory Szorc
|
r33802 | # End of _basewirecommands interface. | ||
Peter Arrenbrecht
|
r17192 | |||
Gregory Szorc
|
r33802 | # Begin of peer interface. | ||
Peter Arrenbrecht
|
r17192 | |||
Gregory Szorc
|
r37648 | def commandexecutor(self): | ||
return localcommandexecutor(self) | ||||
Gregory Szorc
|
r33802 | # End of peer interface. | ||
Augie Fackler
|
r43346 | |||
Gregory Szorc
|
r37828 | @interfaceutil.implementer(repository.ipeerlegacycommands) | ||
Gregory Szorc
|
r37653 | class locallegacypeer(localpeer): | ||
Augie Fackler
|
r46554 | """peer extension which implements legacy methods too; used for tests with | ||
restricted capabilities""" | ||||
Peter Arrenbrecht
|
r17192 | |||
def __init__(self, repo): | ||||
Gregory Szorc
|
r33802 | super(locallegacypeer, self).__init__(repo, caps=legacycaps) | ||
# Begin of baselegacywirecommands interface. | ||||
def between(self, pairs): | ||||
return self._repo.between(pairs) | ||||
Peter Arrenbrecht
|
r17192 | |||
def branches(self, nodes): | ||||
return self._repo.branches(nodes) | ||||
Gregory Szorc
|
r37653 | def changegroup(self, nodes, source): | ||
Augie Fackler
|
r43346 | outgoing = discovery.outgoing( | ||
Manuel Jacob
|
r45704 | self._repo, missingroots=nodes, ancestorsof=self._repo.heads() | ||
Augie Fackler
|
r43346 | ) | ||
Augie Fackler
|
r43347 | return changegroup.makechangegroup(self._repo, outgoing, b'01', source) | ||
Peter Arrenbrecht
|
r17192 | |||
def changegroupsubset(self, bases, heads, source): | ||||
Augie Fackler
|
r43346 | outgoing = discovery.outgoing( | ||
Manuel Jacob
|
r45704 | self._repo, missingroots=bases, ancestorsof=heads | ||
Augie Fackler
|
r43346 | ) | ||
Augie Fackler
|
r43347 | return changegroup.makechangegroup(self._repo, outgoing, b'01', source) | ||
Peter Arrenbrecht
|
r17192 | |||
Gregory Szorc
|
r33802 | # End of baselegacywirecommands interface. | ||
Augie Fackler
|
r43346 | |||
Gregory Szorc
|
r37153 | # Functions receiving (ui, features) that extensions can register to impact | ||
# the ability to load repositories with custom requirements. Only | ||||
# functions defined in loaded extensions are called. | ||||
# | ||||
# The function receives a set of requirement strings that the repository | ||||
# is capable of opening. Functions will typically add elements to the | ||||
# set to reflect that the extension knows how to handle that requirements. | ||||
featuresetupfuncs = set() | ||||
Augie Fackler
|
r43346 | |||
Pulkit Goyal
|
r45912 | def _getsharedvfs(hgvfs, requirements): | ||
Augie Fackler
|
r46554 | """returns the vfs object pointing to root of shared source | ||
Pulkit Goyal
|
r45912 | repo for a shared repository | ||
hgvfs is vfs pointing at .hg/ of current repo (shared one) | ||||
requirements is a set of requirements of current repo (shared one) | ||||
""" | ||||
# The ``shared`` or ``relshared`` requirements indicate the | ||||
# store lives in the path contained in the ``.hg/sharedpath`` file. | ||||
# This is an absolute path for ``shared`` and relative to | ||||
# ``.hg/`` for ``relshared``. | ||||
sharedpath = hgvfs.read(b'sharedpath').rstrip(b'\n') | ||||
Pulkit Goyal
|
r45946 | if requirementsmod.RELATIVE_SHARED_REQUIREMENT in requirements: | ||
Matt Harbison
|
r47650 | sharedpath = util.normpath(hgvfs.join(sharedpath)) | ||
Pulkit Goyal
|
r45912 | |||
sharedvfs = vfsmod.vfs(sharedpath, realpath=True) | ||||
if not sharedvfs.exists(): | ||||
raise error.RepoError( | ||||
_(b'.hg/sharedpath points to nonexistent directory %s') | ||||
% sharedvfs.base | ||||
) | ||||
return sharedvfs | ||||
Pulkit Goyal
|
r45913 | def _readrequires(vfs, allowmissing): | ||
Augie Fackler
|
r46554 | """reads the require file present at root of this vfs | ||
Pulkit Goyal
|
r45913 | and return a set of requirements | ||
If allowmissing is True, we suppress ENOENT if raised""" | ||||
# requires file contains a newline-delimited list of | ||||
# features/capabilities the opener (us) must have in order to use | ||||
# the repository. This file was introduced in Mercurial 0.9.2, | ||||
# which means very old repositories may not have one. We assume | ||||
# a missing file translates to no requirements. | ||||
try: | ||||
requirements = set(vfs.read(b'requires').splitlines()) | ||||
except IOError as e: | ||||
if not (allowmissing and e.errno == errno.ENOENT): | ||||
raise | ||||
requirements = set() | ||||
return requirements | ||||
Gregory Szorc
|
r39725 | def makelocalrepository(baseui, path, intents=None): | ||
Gregory Szorc
|
r39723 | """Create a local repository object. | ||
Given arguments needed to construct a local repository, this function | ||||
Gregory Szorc
|
r39800 | performs various early repository loading functionality (such as | ||
reading the ``.hg/requires`` and ``.hg/hgrc`` files), validates that | ||||
the repository can be opened, derives a type suitable for representing | ||||
that repository, and returns an instance of it. | ||||
Gregory Szorc
|
r39723 | |||
The returned object conforms to the ``repository.completelocalrepository`` | ||||
interface. | ||||
Gregory Szorc
|
r39800 | |||
The repository type is derived by calling a series of factory functions | ||||
for each aspect/interface of the final repository. These are defined by | ||||
``REPO_INTERFACES``. | ||||
Each factory function is called to produce a type implementing a specific | ||||
interface. The cumulative list of returned types will be combined into a | ||||
new type and that type will be instantiated to represent the local | ||||
repository. | ||||
The factory functions each receive various state that may be consulted | ||||
as part of deriving a type. | ||||
Extensions should wrap these factory functions to customize repository type | ||||
creation. Note that an extension's wrapped function may be called even if | ||||
that extension is not loaded for the repo being constructed. Extensions | ||||
should check if their ``__name__`` appears in the | ||||
``extensionmodulenames`` set passed to the factory function and no-op if | ||||
not. | ||||
Gregory Szorc
|
r39723 | """ | ||
Gregory Szorc
|
r39725 | ui = baseui.copy() | ||
# Prevent copying repo configuration. | ||||
ui.copy = baseui.copy | ||||
Gregory Szorc
|
r39724 | # Working directory VFS rooted at repository root. | ||
wdirvfs = vfsmod.vfs(path, expandpath=True, realpath=True) | ||||
# Main VFS for .hg/ directory. | ||||
hgpath = wdirvfs.join(b'.hg') | ||||
hgvfs = vfsmod.vfs(hgpath, cacheaudited=True) | ||||
Pulkit Goyal
|
r45912 | # Whether this repository is shared one or not | ||
shared = False | ||||
# If this repository is shared, vfs pointing to shared repo | ||||
sharedvfs = None | ||||
Gregory Szorc
|
r39724 | |||
Gregory Szorc
|
r39727 | # The .hg/ path should exist and should be a directory. All other | ||
# cases are errors. | ||||
if not hgvfs.isdir(): | ||||
try: | ||||
hgvfs.stat() | ||||
except OSError as e: | ||||
if e.errno != errno.ENOENT: | ||||
raise | ||||
Gregory Szorc
|
r45469 | except ValueError as e: | ||
# Can be raised on Python 3.8 when path is invalid. | ||||
raise error.Abort( | ||||
Matt Harbison
|
r47412 | _(b'invalid path %s: %s') % (path, stringutil.forcebytestr(e)) | ||
Gregory Szorc
|
r45469 | ) | ||
Gregory Szorc
|
r39727 | |||
raise error.RepoError(_(b'repository %s not found') % path) | ||||
Pulkit Goyal
|
r45913 | requirements = _readrequires(hgvfs, True) | ||
Pulkit Goyal
|
r46055 | shared = ( | ||
requirementsmod.SHARED_REQUIREMENT in requirements | ||||
or requirementsmod.RELATIVE_SHARED_REQUIREMENT in requirements | ||||
) | ||||
Pulkit Goyal
|
r46851 | storevfs = None | ||
Pulkit Goyal
|
r46055 | if shared: | ||
Pulkit Goyal
|
r46851 | # This is a shared repo | ||
Pulkit Goyal
|
r46055 | sharedvfs = _getsharedvfs(hgvfs, requirements) | ||
Pulkit Goyal
|
r46851 | storevfs = vfsmod.vfs(sharedvfs.join(b'store')) | ||
else: | ||||
storevfs = vfsmod.vfs(hgvfs.join(b'store')) | ||||
Pulkit Goyal
|
r46055 | |||
# if .hg/requires contains the sharesafe requirement, it means | ||||
# there exists a `.hg/store/requires` too and we should read it | ||||
# NOTE: presence of SHARESAFE_REQUIREMENT imply that store requirement | ||||
# is present. We never write SHARESAFE_REQUIREMENT for a repo if store | ||||
# is not present, refer checkrequirementscompat() for that | ||||
Pulkit Goyal
|
r46619 | # | ||
# However, if SHARESAFE_REQUIREMENT is not present, it means that the | ||||
# repository was shared the old way. We check the share source .hg/requires | ||||
# for SHARESAFE_REQUIREMENT to detect whether the current repository needs | ||||
# to be reshared | ||||
Matt Harbison
|
r47411 | hint = _(b"see `hg help config.format.use-share-safe` for more information") | ||
Pulkit Goyal
|
r46055 | if requirementsmod.SHARESAFE_REQUIREMENT in requirements: | ||
Pulkit Goyal
|
r46618 | |||
if ( | ||||
shared | ||||
and requirementsmod.SHARESAFE_REQUIREMENT | ||||
not in _readrequires(sharedvfs, True) | ||||
): | ||||
Pulkit Goyal
|
r47051 | mismatch_warn = ui.configbool( | ||
b'share', b'safe-mismatch.source-not-safe.warn' | ||||
) | ||||
Pulkit Goyal
|
r47050 | mismatch_config = ui.config( | ||
b'share', b'safe-mismatch.source-not-safe' | ||||
) | ||||
if mismatch_config in ( | ||||
b'downgrade-allow', | ||||
b'allow', | ||||
b'downgrade-abort', | ||||
Pulkit Goyal
|
r46853 | ): | ||
# prevent cyclic import localrepo -> upgrade -> localrepo | ||||
from . import upgrade | ||||
upgrade.downgrade_share_to_non_safe( | ||||
ui, | ||||
hgvfs, | ||||
sharedvfs, | ||||
requirements, | ||||
Pulkit Goyal
|
r47050 | mismatch_config, | ||
Pulkit Goyal
|
r47051 | mismatch_warn, | ||
Pulkit Goyal
|
r46853 | ) | ||
Pulkit Goyal
|
r47050 | elif mismatch_config == b'abort': | ||
Pulkit Goyal
|
r46853 | raise error.Abort( | ||
Matt Harbison
|
r47088 | _(b"share source does not support share-safe requirement"), | ||
r47077 | hint=hint, | |||
Pulkit Goyal
|
r46853 | ) | ||
Pulkit Goyal
|
r47050 | else: | ||
raise error.Abort( | ||||
_( | ||||
b"share-safe mismatch with source.\nUnrecognized" | ||||
b" value '%s' of `share.safe-mismatch.source-not-safe`" | ||||
b" set." | ||||
) | ||||
% mismatch_config, | ||||
hint=hint, | ||||
) | ||||
Pulkit Goyal
|
r46853 | else: | ||
requirements |= _readrequires(storevfs, False) | ||||
Pulkit Goyal
|
r46619 | elif shared: | ||
sourcerequires = _readrequires(sharedvfs, False) | ||||
if requirementsmod.SHARESAFE_REQUIREMENT in sourcerequires: | ||||
Pulkit Goyal
|
r47050 | mismatch_config = ui.config(b'share', b'safe-mismatch.source-safe') | ||
Pulkit Goyal
|
r47051 | mismatch_warn = ui.configbool( | ||
b'share', b'safe-mismatch.source-safe.warn' | ||||
) | ||||
Pulkit Goyal
|
r47050 | if mismatch_config in ( | ||
b'upgrade-allow', | ||||
b'allow', | ||||
b'upgrade-abort', | ||||
): | ||||
Pulkit Goyal
|
r46852 | # prevent cyclic import localrepo -> upgrade -> localrepo | ||
from . import upgrade | ||||
upgrade.upgrade_share_to_safe( | ||||
ui, | ||||
hgvfs, | ||||
storevfs, | ||||
requirements, | ||||
Pulkit Goyal
|
r47050 | mismatch_config, | ||
Pulkit Goyal
|
r47051 | mismatch_warn, | ||
Pulkit Goyal
|
r46619 | ) | ||
Pulkit Goyal
|
r47050 | elif mismatch_config == b'abort': | ||
Pulkit Goyal
|
r47049 | raise error.Abort( | ||
Pulkit Goyal
|
r46852 | _( | ||
Pulkit Goyal
|
r47049 | b'version mismatch: source uses share-safe' | ||
b' functionality while the current share does not' | ||||
r47077 | ), | |||
hint=hint, | ||||
Pulkit Goyal
|
r46852 | ) | ||
Pulkit Goyal
|
r47050 | else: | ||
raise error.Abort( | ||||
_( | ||||
b"share-safe mismatch with source.\nUnrecognized" | ||||
b" value '%s' of `share.safe-mismatch.source-safe` set." | ||||
) | ||||
% mismatch_config, | ||||
hint=hint, | ||||
) | ||||
Gregory Szorc
|
r39728 | |||
Gregory Szorc
|
r39726 | # The .hg/hgrc file may load extensions or contain config options | ||
# that influence repository construction. Attempt to load it and | ||||
# process any new extensions that it may have pulled in. | ||||
Pulkit Goyal
|
r46057 | if loadhgrc(ui, wdirvfs, hgvfs, requirements, sharedvfs): | ||
Gregory Szorc
|
r39888 | afterhgrcload(ui, wdirvfs, hgvfs, requirements) | ||
Gregory Szorc
|
r39726 | extensions.loadall(ui) | ||
Yuya Nishihara
|
r40760 | extensions.populateui(ui) | ||
Gregory Szorc
|
r39726 | |||
Gregory Szorc
|
r39800 | # Set of module names of extensions loaded for this repository. | ||
extensionmodulenames = {m.__name__ for n, m in extensions.extensions(ui)} | ||||
Gregory Szorc
|
r39729 | supportedrequirements = gathersupportedrequirements(ui) | ||
Gregory Szorc
|
r39731 | |||
# We first validate the requirements are known. | ||||
Gregory Szorc
|
r39729 | ensurerequirementsrecognized(requirements, supportedrequirements) | ||
Gregory Szorc
|
r39731 | # Then we validate that the known set is reasonable to use together. | ||
ensurerequirementscompatible(ui, requirements) | ||||
Gregory Szorc
|
r39732 | # TODO there are unhandled edge cases related to opening repositories with | ||
# shared storage. If storage is shared, we should also test for requirements | ||||
# compatibility in the pointed-to repo. This entails loading the .hg/hgrc in | ||||
# that repo, as that repo may load extensions needed to open it. This is a | ||||
# bit complicated because we don't want the other hgrc to overwrite settings | ||||
# in this hgrc. | ||||
# | ||||
# This bug is somewhat mitigated by the fact that we copy the .hg/requires | ||||
# file when sharing repos. But if a requirement is added after the share is | ||||
# performed, thereby introducing a new requirement for the opener, we may | ||||
# will not see that and could encounter a run-time error interacting with | ||||
# that shared store since it has an unknown-to-us requirement. | ||||
Gregory Szorc
|
r39729 | # At this point, we know we should be capable of opening the repository. | ||
# Now get on with doing that. | ||||
Gregory Szorc
|
r39886 | features = set() | ||
Gregory Szorc
|
r39733 | # The "store" part of the repository holds versioned data. How it is | ||
Pulkit Goyal
|
r45912 | # accessed is determined by various requirements. If `shared` or | ||
# `relshared` requirements are present, this indicates current repository | ||||
# is a share and store exists in path mentioned in `.hg/sharedpath` | ||||
if shared: | ||||
Gregory Szorc
|
r39733 | storebasepath = sharedvfs.base | ||
cachepath = sharedvfs.join(b'cache') | ||||
Pulkit Goyal
|
r45912 | features.add(repository.REPO_FEATURE_SHARED_STORAGE) | ||
Gregory Szorc
|
r39733 | else: | ||
storebasepath = hgvfs.base | ||||
cachepath = hgvfs.join(b'cache') | ||||
Boris Feld
|
r40826 | wcachepath = hgvfs.join(b'wcache') | ||
Gregory Szorc
|
r39733 | # The store has changed over time and the exact layout is dictated by | ||
# requirements. The store interface abstracts differences across all | ||||
# of them. | ||||
Augie Fackler
|
r43346 | store = makestore( | ||
requirements, | ||||
storebasepath, | ||||
lambda base: vfsmod.vfs(base, cacheaudited=True), | ||||
) | ||||
Gregory Szorc
|
r39733 | hgvfs.createmode = store.createmode | ||
Gregory Szorc
|
r39736 | storevfs = store.vfs | ||
Gregory Szorc
|
r39886 | storevfs.options = resolvestorevfsoptions(ui, requirements, features) | ||
Gregory Szorc
|
r39736 | |||
r48000 | if requirementsmod.REVLOGV2_REQUIREMENT in requirements: | |||
features.add(repository.REPO_FEATURE_SIDE_DATA) | ||||
Gregory Szorc
|
r39733 | # The cache vfs is used to manage cache files. | ||
cachevfs = vfsmod.vfs(cachepath, cacheaudited=True) | ||||
cachevfs.createmode = store.createmode | ||||
Boris Feld
|
r40826 | # The cache vfs is used to manage cache files related to the working copy | ||
wcachevfs = vfsmod.vfs(wcachepath, cacheaudited=True) | ||||
wcachevfs.createmode = store.createmode | ||||
Gregory Szorc
|
r39733 | |||
Gregory Szorc
|
r39800 | # Now resolve the type for the repository object. We do this by repeatedly | ||
# calling a factory function to produces types for specific aspects of the | ||||
# repo's operation. The aggregate returned types are used as base classes | ||||
# for a dynamically-derived type, which will represent our new repository. | ||||
bases = [] | ||||
extrastate = {} | ||||
for iface, fn in REPO_INTERFACES: | ||||
# We pass all potentially useful state to give extensions tons of | ||||
# flexibility. | ||||
Augie Fackler
|
r43346 | typ = fn()( | ||
ui=ui, | ||||
intents=intents, | ||||
requirements=requirements, | ||||
features=features, | ||||
wdirvfs=wdirvfs, | ||||
hgvfs=hgvfs, | ||||
store=store, | ||||
storevfs=storevfs, | ||||
storeoptions=storevfs.options, | ||||
cachevfs=cachevfs, | ||||
wcachevfs=wcachevfs, | ||||
extensionmodulenames=extensionmodulenames, | ||||
extrastate=extrastate, | ||||
baseclasses=bases, | ||||
) | ||||
Gregory Szorc
|
r39800 | |||
if not isinstance(typ, type): | ||||
Augie Fackler
|
r43346 | raise error.ProgrammingError( | ||
Augie Fackler
|
r43347 | b'unable to construct type for %s' % iface | ||
Augie Fackler
|
r43346 | ) | ||
Gregory Szorc
|
r39800 | |||
bases.append(typ) | ||||
# type() allows you to use characters in type names that wouldn't be | ||||
# recognized as Python symbols in source code. We abuse that to add | ||||
# rich information about our constructed repo. | ||||
Augie Fackler
|
r43346 | name = pycompat.sysstr( | ||
b'derivedrepo:%s<%s>' % (wdirvfs.base, b','.join(sorted(requirements))) | ||||
) | ||||
Gregory Szorc
|
r39800 | |||
cls = type(name, tuple(bases), {}) | ||||
return cls( | ||||
Gregory Szorc
|
r39725 | baseui=baseui, | ||
ui=ui, | ||||
origroot=path, | ||||
Gregory Szorc
|
r39724 | wdirvfs=wdirvfs, | ||
hgvfs=hgvfs, | ||||
Gregory Szorc
|
r39728 | requirements=requirements, | ||
Gregory Szorc
|
r39729 | supportedrequirements=supportedrequirements, | ||
Gregory Szorc
|
r39733 | sharedpath=storebasepath, | ||
store=store, | ||||
cachevfs=cachevfs, | ||||
Boris Feld
|
r40826 | wcachevfs=wcachevfs, | ||
Gregory Szorc
|
r39886 | features=features, | ||
Augie Fackler
|
r43346 | intents=intents, | ||
) | ||||
Gregory Szorc
|
r39723 | |||
Pulkit Goyal
|
r46057 | def loadhgrc(ui, wdirvfs, hgvfs, requirements, sharedvfs=None): | ||
Gregory Szorc
|
r40571 | """Load hgrc files/content into a ui instance. | ||
This is called during repository opening to load any additional | ||||
config files or settings relevant to the current repository. | ||||
Returns a bool indicating whether any additional configs were loaded. | ||||
Extensions should monkeypatch this function to modify how per-repo | ||||
configs are loaded. For example, an extension may wish to pull in | ||||
configs from alternate files or sources. | ||||
Pulkit Goyal
|
r46057 | |||
sharedvfs is vfs object pointing to source repo if the current one is a | ||||
shared one | ||||
Gregory Szorc
|
r40571 | """ | ||
r44727 | if not rcutil.use_repo_hgrc(): | |||
r44583 | return False | |||
Pulkit Goyal
|
r46057 | |||
Pulkit Goyal
|
r46368 | ret = False | ||
Pulkit Goyal
|
r46057 | # first load config from shared source if we has to | ||
if requirementsmod.SHARESAFE_REQUIREMENT in requirements and sharedvfs: | ||||
try: | ||||
ui.readconfig(sharedvfs.join(b'hgrc'), root=sharedvfs.base) | ||||
Pulkit Goyal
|
r46368 | ret = True | ||
Pulkit Goyal
|
r46057 | except IOError: | ||
pass | ||||
Gregory Szorc
|
r40571 | try: | ||
ui.readconfig(hgvfs.join(b'hgrc'), root=wdirvfs.base) | ||||
Pulkit Goyal
|
r46368 | ret = True | ||
Gregory Szorc
|
r40571 | except IOError: | ||
Pulkit Goyal
|
r46368 | pass | ||
try: | ||||
ui.readconfig(hgvfs.join(b'hgrc-not-shared'), root=wdirvfs.base) | ||||
ret = True | ||||
except IOError: | ||||
pass | ||||
return ret | ||||
Gregory Szorc
|
r40571 | |||
Augie Fackler
|
r43346 | |||
Gregory Szorc
|
r39888 | def afterhgrcload(ui, wdirvfs, hgvfs, requirements): | ||
"""Perform additional actions after .hg/hgrc is loaded. | ||||
This function is called during repository loading immediately after | ||||
the .hg/hgrc file is loaded and before per-repo extensions are loaded. | ||||
The function can be used to validate configs, automatically add | ||||
options (including extensions) based on requirements, etc. | ||||
""" | ||||
# Map of requirements to list of extensions to load automatically when | ||||
# requirement is present. | ||||
autoextensions = { | ||||
Augie Fackler
|
r44966 | b'git': [b'git'], | ||
Gregory Szorc
|
r39890 | b'largefiles': [b'largefiles'], | ||
Gregory Szorc
|
r39888 | b'lfs': [b'lfs'], | ||
} | ||||
for requirement, names in sorted(autoextensions.items()): | ||||
if requirement not in requirements: | ||||
continue | ||||
for name in names: | ||||
if not ui.hasconfig(b'extensions', name): | ||||
Augie Fackler
|
r43347 | ui.setconfig(b'extensions', name, b'', source=b'autoload') | ||
Gregory Szorc
|
r39888 | |||
Augie Fackler
|
r43346 | |||
Gregory Szorc
|
r39729 | def gathersupportedrequirements(ui): | ||
"""Determine the complete set of recognized requirements.""" | ||||
# Start with all requirements supported by this file. | ||||
supported = set(localrepository._basesupported) | ||||
# Execute ``featuresetupfuncs`` entries if they belong to an extension | ||||
# relevant to this ui instance. | ||||
modules = {m.__name__ for n, m in extensions.extensions(ui)} | ||||
for fn in featuresetupfuncs: | ||||
if fn.__module__ in modules: | ||||
fn(ui, supported) | ||||
# Add derived requirements from registered compression engines. | ||||
for name in util.compengines: | ||||
engine = util.compengines[name] | ||||
r42304 | if engine.available() and engine.revlogheader(): | |||
Gregory Szorc
|
r39729 | supported.add(b'exp-compression-%s' % name) | ||
Augie Fackler
|
r43347 | if engine.name() == b'zstd': | ||
r42305 | supported.add(b'revlog-compression-zstd') | |||
Gregory Szorc
|
r39729 | |||
return supported | ||||
Augie Fackler
|
r43346 | |||
Gregory Szorc
|
r39729 | def ensurerequirementsrecognized(requirements, supported): | ||
"""Validate that a set of local requirements is recognized. | ||||
Receives a set of requirements. Raises an ``error.RepoError`` if there | ||||
exists any requirement in that set that currently loaded code doesn't | ||||
recognize. | ||||
Returns a set of supported requirements. | ||||
""" | ||||
missing = set() | ||||
for requirement in requirements: | ||||
if requirement in supported: | ||||
continue | ||||
if not requirement or not requirement[0:1].isalnum(): | ||||
raise error.RequirementError(_(b'.hg/requires file is corrupt')) | ||||
missing.add(requirement) | ||||
if missing: | ||||
raise error.RequirementError( | ||||
Augie Fackler
|
r43346 | _(b'repository requires features unknown to this Mercurial: %s') | ||
% b' '.join(sorted(missing)), | ||||
hint=_( | ||||
b'see https://mercurial-scm.org/wiki/MissingRequirement ' | ||||
b'for more information' | ||||
), | ||||
) | ||||
Gregory Szorc
|
r39729 | |||
Gregory Szorc
|
r39731 | def ensurerequirementscompatible(ui, requirements): | ||
"""Validates that a set of recognized requirements is mutually compatible. | ||||
Some requirements may not be compatible with others or require | ||||
config options that aren't enabled. This function is called during | ||||
repository opening to ensure that the set of requirements needed | ||||
to open a repository is sane and compatible with config options. | ||||
Extensions can monkeypatch this function to perform additional | ||||
checking. | ||||
``error.RepoError`` should be raised on failure. | ||||
""" | ||||
Pulkit Goyal
|
r45932 | if ( | ||
requirementsmod.SPARSE_REQUIREMENT in requirements | ||||
and not sparse.enabled | ||||
): | ||||
Augie Fackler
|
r43346 | raise error.RepoError( | ||
_( | ||||
b'repository is using sparse feature but ' | ||||
b'sparse is not enabled; enable the ' | ||||
b'"sparse" extensions to access' | ||||
) | ||||
) | ||||
Gregory Szorc
|
r39731 | |||
Gregory Szorc
|
r39734 | def makestore(requirements, path, vfstype): | ||
"""Construct a storage object for a repository.""" | ||||
Raphaël Gomès
|
r47382 | if requirementsmod.STORE_REQUIREMENT in requirements: | ||
Raphaël Gomès
|
r47383 | if requirementsmod.FNCACHE_REQUIREMENT in requirements: | ||
Raphaël Gomès
|
r47381 | dotencode = requirementsmod.DOTENCODE_REQUIREMENT in requirements | ||
return storemod.fncachestore(path, vfstype, dotencode) | ||||
Gregory Szorc
|
r39734 | |||
return storemod.encodedstore(path, vfstype) | ||||
return storemod.basicstore(path, vfstype) | ||||
Augie Fackler
|
r43346 | |||
Gregory Szorc
|
r39886 | def resolvestorevfsoptions(ui, requirements, features): | ||
Gregory Szorc
|
r39736 | """Resolve the options to pass to the store vfs opener. | ||
The returned dict is used to influence behavior of the storage layer. | ||||
""" | ||||
options = {} | ||||
Pulkit Goyal
|
r45932 | if requirementsmod.TREEMANIFEST_REQUIREMENT in requirements: | ||
Gregory Szorc
|
r39736 | options[b'treemanifest'] = True | ||
# experimental config: format.manifestcachesize | ||||
manifestcachesize = ui.configint(b'format', b'manifestcachesize') | ||||
if manifestcachesize is not None: | ||||
options[b'manifestcachesize'] = manifestcachesize | ||||
# In the absence of another requirement superseding a revlog-related | ||||
# requirement, we have to assume the repo is using revlog version 0. | ||||
# This revlog format is super old and we don't bother trying to parse | ||||
# opener options for it because those options wouldn't do anything | ||||
# meaningful on such old repos. | ||||
Pulkit Goyal
|
r45933 | if ( | ||
Raphaël Gomès
|
r47371 | requirementsmod.REVLOGV1_REQUIREMENT in requirements | ||
Pulkit Goyal
|
r45933 | or requirementsmod.REVLOGV2_REQUIREMENT in requirements | ||
): | ||||
Gregory Szorc
|
r39886 | options.update(resolverevlogstorevfsoptions(ui, requirements, features)) | ||
Augie Fackler
|
r43346 | else: # explicitly mark repo as using revlogv0 | ||
Augie Fackler
|
r43347 | options[b'revlogv0'] = True | ||
Pulkit Goyal
|
r45933 | if requirementsmod.COPIESSDC_REQUIREMENT in requirements: | ||
r43412 | options[b'copies-storage'] = b'changeset-sidedata' | |||
else: | ||||
writecopiesto = ui.config(b'experimental', b'copies.write-to') | ||||
copiesextramode = (b'changeset-only', b'compatibility') | ||||
if writecopiesto in copiesextramode: | ||||
options[b'copies-storage'] = b'extra' | ||||
r43296 | ||||
Gregory Szorc
|
r39736 | return options | ||
Augie Fackler
|
r43346 | |||
Gregory Szorc
|
r39886 | def resolverevlogstorevfsoptions(ui, requirements, features): | ||
Gregory Szorc
|
r39736 | """Resolve opener options specific to revlogs.""" | ||
options = {} | ||||
Matt Harbison
|
r40303 | options[b'flagprocessors'] = {} | ||
Gregory Szorc
|
r39736 | |||
Raphaël Gomès
|
r47371 | if requirementsmod.REVLOGV1_REQUIREMENT in requirements: | ||
Gregory Szorc
|
r39736 | options[b'revlogv1'] = True | ||
Pulkit Goyal
|
r45933 | if requirementsmod.REVLOGV2_REQUIREMENT in requirements: | ||
Gregory Szorc
|
r39736 | options[b'revlogv2'] = True | ||
Raphaël Gomès
|
r47372 | if requirementsmod.GENERALDELTA_REQUIREMENT in requirements: | ||
Gregory Szorc
|
r39736 | options[b'generaldelta'] = True | ||
# experimental config: format.chunkcachesize | ||||
chunkcachesize = ui.configint(b'format', b'chunkcachesize') | ||||
if chunkcachesize is not None: | ||||
options[b'chunkcachesize'] = chunkcachesize | ||||
Augie Fackler
|
r43346 | deltabothparents = ui.configbool( | ||
b'storage', b'revlog.optimize-delta-parent-choice' | ||||
) | ||||
Gregory Szorc
|
r39736 | options[b'deltabothparents'] = deltabothparents | ||
r41985 | lazydelta = ui.configbool(b'storage', b'revlog.reuse-external-delta') | |||
lazydeltabase = False | ||||
if lazydelta: | ||||
Augie Fackler
|
r43346 | lazydeltabase = ui.configbool( | ||
b'storage', b'revlog.reuse-external-delta-parent' | ||||
) | ||||
r41984 | if lazydeltabase is None: | |||
lazydeltabase = not scmutil.gddeltaconfig(ui) | ||||
r41985 | options[b'lazydelta'] = lazydelta | |||
r41984 | options[b'lazydeltabase'] = lazydeltabase | |||
Gregory Szorc
|
r39736 | |||
chainspan = ui.configbytes(b'experimental', b'maxdeltachainspan') | ||||
if 0 <= chainspan: | ||||
options[b'maxdeltachainspan'] = chainspan | ||||
Augie Fackler
|
r43346 | mmapindexthreshold = ui.configbytes(b'experimental', b'mmapindexthreshold') | ||
Gregory Szorc
|
r39736 | if mmapindexthreshold is not None: | ||
options[b'mmapindexthreshold'] = mmapindexthreshold | ||||
withsparseread = ui.configbool(b'experimental', b'sparse-read') | ||||
Augie Fackler
|
r43346 | srdensitythres = float( | ||
ui.config(b'experimental', b'sparse-read.density-threshold') | ||||
) | ||||
srmingapsize = ui.configbytes(b'experimental', b'sparse-read.min-gap-size') | ||||
Gregory Szorc
|
r39736 | options[b'with-sparse-read'] = withsparseread | ||
options[b'sparse-read-density-threshold'] = srdensitythres | ||||
options[b'sparse-read-min-gap-size'] = srmingapsize | ||||
Pulkit Goyal
|
r45933 | sparserevlog = requirementsmod.SPARSEREVLOG_REQUIREMENT in requirements | ||
Gregory Szorc
|
r39736 | options[b'sparse-revlog'] = sparserevlog | ||
if sparserevlog: | ||||
options[b'generaldelta'] = True | ||||
maxchainlen = None | ||||
if sparserevlog: | ||||
maxchainlen = revlogconst.SPARSE_REVLOG_MAX_CHAIN_LENGTH | ||||
# experimental config: format.maxchainlen | ||||
maxchainlen = ui.configint(b'format', b'maxchainlen', maxchainlen) | ||||
if maxchainlen is not None: | ||||
options[b'maxchainlen'] = maxchainlen | ||||
for r in requirements: | ||||
r42305 | # we allow multiple compression engine requirement to co-exist because | |||
# strickly speaking, revlog seems to support mixed compression style. | ||||
# | ||||
# The compression used for new entries will be "the last one" | ||||
prefix = r.startswith | ||||
Augie Fackler
|
r43347 | if prefix(b'revlog-compression-') or prefix(b'exp-compression-'): | ||
options[b'compengine'] = r.split(b'-', 2)[2] | ||||
Gregory Szorc
|
r39736 | |||
r42210 | options[b'zlib.level'] = ui.configint(b'storage', b'revlog.zlib.level') | |||
if options[b'zlib.level'] is not None: | ||||
if not (0 <= options[b'zlib.level'] <= 9): | ||||
Augie Fackler
|
r43347 | msg = _(b'invalid value for `storage.revlog.zlib.level` config: %d') | ||
r42210 | raise error.Abort(msg % options[b'zlib.level']) | |||
r42211 | options[b'zstd.level'] = ui.configint(b'storage', b'revlog.zstd.level') | |||
if options[b'zstd.level'] is not None: | ||||
if not (0 <= options[b'zstd.level'] <= 22): | ||||
Augie Fackler
|
r43347 | msg = _(b'invalid value for `storage.revlog.zstd.level` config: %d') | ||
r42211 | raise error.Abort(msg % options[b'zstd.level']) | |||
r42210 | ||||
Pulkit Goyal
|
r45932 | if requirementsmod.NARROW_REQUIREMENT in requirements: | ||
Gregory Szorc
|
r39806 | options[b'enableellipsis'] = True | ||
Matt Harbison
|
r44495 | if ui.configbool(b'experimental', b'rust.index'): | ||
Georges Racinet
|
r44466 | options[b'rust.index'] = True | ||
Pulkit Goyal
|
r45933 | if requirementsmod.NODEMAP_REQUIREMENT in requirements: | ||
r47027 | slow_path = ui.config( | |||
b'storage', b'revlog.persistent-nodemap.slow-path' | ||||
) | ||||
r47029 | if slow_path not in (b'allow', b'warn', b'abort'): | |||
r47027 | default = ui.config_default( | |||
b'storage', b'revlog.persistent-nodemap.slow-path' | ||||
) | ||||
msg = _( | ||||
b'unknown value for config ' | ||||
b'"storage.revlog.persistent-nodemap.slow-path": "%s"\n' | ||||
) | ||||
ui.warn(msg % slow_path) | ||||
if not ui.quiet: | ||||
ui.warn(_(b'falling back to default value: %s\n') % default) | ||||
slow_path = default | ||||
r47028 | ||||
msg = _( | ||||
b"accessing `persistent-nodemap` repository without associated " | ||||
b"fast implementation." | ||||
) | ||||
hint = _( | ||||
b"check `hg help config.format.use-persistent-nodemap` " | ||||
b"for details" | ||||
) | ||||
r47029 | if not revlog.HAS_FAST_PERSISTENT_NODEMAP: | |||
if slow_path == b'warn': | ||||
msg = b"warning: " + msg + b'\n' | ||||
ui.warn(msg) | ||||
if not ui.quiet: | ||||
hint = b'(' + hint + b')\n' | ||||
ui.warn(hint) | ||||
if slow_path == b'abort': | ||||
raise error.Abort(msg, hint=hint) | ||||
r45296 | options[b'persistent-nodemap'] = True | |||
r47024 | if ui.configbool(b'storage', b'revlog.persistent-nodemap.mmap'): | |||
r45296 | options[b'persistent-nodemap.mmap'] = True | |||
r44794 | if ui.configbool(b'devel', b'persistent-nodemap'): | |||
options[b'devel-force-nodemap'] = True | ||||
Georges Racinet
|
r44466 | |||
Gregory Szorc
|
r39736 | return options | ||
Augie Fackler
|
r43346 | |||
Gregory Szorc
|
r39800 | def makemain(**kwargs): | ||
"""Produce a type conforming to ``ilocalrepositorymain``.""" | ||||
return localrepository | ||||
Augie Fackler
|
r43346 | |||
Gregory Szorc
|
r39800 | @interfaceutil.implementer(repository.ilocalrepositoryfilestorage) | ||
class revlogfilestorage(object): | ||||
"""File storage when using revlogs.""" | ||||
def file(self, path): | ||||
Yuya Nishihara
|
r47352 | if path.startswith(b'/'): | ||
Gregory Szorc
|
r39800 | path = path[1:] | ||
return filelog.filelog(self.svfs, path) | ||||
Augie Fackler
|
r43346 | |||
Gregory Szorc
|
r39801 | @interfaceutil.implementer(repository.ilocalrepositoryfilestorage) | ||
class revlognarrowfilestorage(object): | ||||
"""File storage when using revlogs and narrow files.""" | ||||
def file(self, path): | ||||
Yuya Nishihara
|
r47352 | if path.startswith(b'/'): | ||
Gregory Szorc
|
r39801 | path = path[1:] | ||
Martin von Zweigbergk
|
r41266 | return filelog.narrowfilelog(self.svfs, path, self._storenarrowmatch) | ||
Gregory Szorc
|
r39801 | |||
Augie Fackler
|
r43346 | |||
Gregory Szorc
|
r39886 | def makefilestorage(requirements, features, **kwargs): | ||
Gregory Szorc
|
r39800 | """Produce a type conforming to ``ilocalrepositoryfilestorage``.""" | ||
Gregory Szorc
|
r39886 | features.add(repository.REPO_FEATURE_REVLOG_FILE_STORAGE) | ||
Gregory Szorc
|
r40063 | features.add(repository.REPO_FEATURE_STREAM_CLONE) | ||
Gregory Szorc
|
r39886 | |||
Pulkit Goyal
|
r45932 | if requirementsmod.NARROW_REQUIREMENT in requirements: | ||
Gregory Szorc
|
r39801 | return revlognarrowfilestorage | ||
else: | ||||
return revlogfilestorage | ||||
Gregory Szorc
|
r39800 | |||
Augie Fackler
|
r43346 | |||
Gregory Szorc
|
r39800 | # List of repository interfaces and factory functions for them. Each | ||
# will be called in order during ``makelocalrepository()`` to iteratively | ||||
Gregory Szorc
|
r40030 | # derive the final type for a local repository instance. We capture the | ||
# function as a lambda so we don't hold a reference and the module-level | ||||
# functions can be wrapped. | ||||
Gregory Szorc
|
r39800 | REPO_INTERFACES = [ | ||
Gregory Szorc
|
r40030 | (repository.ilocalrepositorymain, lambda: makemain), | ||
(repository.ilocalrepositoryfilestorage, lambda: makefilestorage), | ||||
Gregory Szorc
|
r39800 | ] | ||
Augie Fackler
|
r43346 | |||
Gregory Szorc
|
r39800 | @interfaceutil.implementer(repository.ilocalrepositorymain) | ||
Peter Arrenbrecht
|
r17192 | class localrepository(object): | ||
Gregory Szorc
|
r39800 | """Main class for representing local repositories. | ||
All local repositories are instances of this class. | ||||
Constructed on its own, instances of this class are not usable as | ||||
repository objects. To obtain a usable repository object, call | ||||
``hg.repository()``, ``localrepo.instance()``, or | ||||
``localrepo.makelocalrepository()``. The latter is the lowest-level. | ||||
``instance()`` adds support for creating new repositories. | ||||
``hg.repository()`` adds more extension integration, including calling | ||||
``reposetup()``. Generally speaking, ``hg.repository()`` should be | ||||
used. | ||||
""" | ||||
Peter Arrenbrecht
|
r17192 | |||
Augie Fackler
|
r36391 | # obsolete experimental requirements: | ||
# - manifestv2: An experimental new manifest format that allowed | ||||
# for stem compression of long paths. Experiment ended up not | ||||
# being successful (repository sizes went up due to worse delta | ||||
# chains), and the code was deleted in 4.6. | ||||
Gregory Szorc
|
r32315 | supportedformats = { | ||
Raphaël Gomès
|
r47371 | requirementsmod.REVLOGV1_REQUIREMENT, | ||
Raphaël Gomès
|
r47372 | requirementsmod.GENERALDELTA_REQUIREMENT, | ||
Pulkit Goyal
|
r45932 | requirementsmod.TREEMANIFEST_REQUIREMENT, | ||
Pulkit Goyal
|
r45933 | requirementsmod.COPIESSDC_REQUIREMENT, | ||
requirementsmod.REVLOGV2_REQUIREMENT, | ||||
requirementsmod.SPARSEREVLOG_REQUIREMENT, | ||||
requirementsmod.NODEMAP_REQUIREMENT, | ||||
Martin von Zweigbergk
|
r42512 | bookmarks.BOOKMARKS_IN_STORE_REQUIREMENT, | ||
Pulkit Goyal
|
r46055 | requirementsmod.SHARESAFE_REQUIREMENT, | ||
Gregory Szorc
|
r32315 | } | ||
_basesupported = supportedformats | { | ||||
Raphaël Gomès
|
r47382 | requirementsmod.STORE_REQUIREMENT, | ||
Raphaël Gomès
|
r47383 | requirementsmod.FNCACHE_REQUIREMENT, | ||
Pulkit Goyal
|
r45946 | requirementsmod.SHARED_REQUIREMENT, | ||
requirementsmod.RELATIVE_SHARED_REQUIREMENT, | ||||
Raphaël Gomès
|
r47381 | requirementsmod.DOTENCODE_REQUIREMENT, | ||
Pulkit Goyal
|
r45932 | requirementsmod.SPARSE_REQUIREMENT, | ||
requirementsmod.INTERNAL_PHASE_REQUIREMENT, | ||||
Gregory Szorc
|
r32315 | } | ||
Bryan O'Sullivan
|
r17137 | |||
Boris Feld
|
r33436 | # list of prefix for file which can be written without 'wlock' | ||
# Extensions should extend this list when needed | ||||
_wlockfreeprefix = { | ||||
# We migh consider requiring 'wlock' for the next | ||||
# two, but pretty much all the existing code assume | ||||
# wlock is not needed so we keep them excluded for | ||||
# now. | ||||
Augie Fackler
|
r43347 | b'hgrc', | ||
b'requires', | ||||
Boris Feld
|
r33436 | # XXX cache is a complicatged business someone | ||
# should investigate this in depth at some point | ||||
Augie Fackler
|
r43347 | b'cache/', | ||
Boris Feld
|
r33436 | # XXX shouldn't be dirstate covered by the wlock? | ||
Augie Fackler
|
r43347 | b'dirstate', | ||
Boris Feld
|
r33436 | # XXX bisect was still a bit too messy at the time | ||
# this changeset was introduced. Someone should fix | ||||
# the remainig bit and drop this line | ||||
Augie Fackler
|
r43347 | b'bisect.state', | ||
Boris Feld
|
r33436 | } | ||
Augie Fackler
|
r43346 | def __init__( | ||
self, | ||||
baseui, | ||||
ui, | ||||
origroot, | ||||
wdirvfs, | ||||
hgvfs, | ||||
requirements, | ||||
supportedrequirements, | ||||
sharedpath, | ||||
store, | ||||
cachevfs, | ||||
wcachevfs, | ||||
features, | ||||
intents=None, | ||||
): | ||||
Gregory Szorc
|
r39584 | """Create a new local repository instance. | ||
Gregory Szorc
|
r39724 | Most callers should use ``hg.repository()``, ``localrepo.instance()``, | ||
or ``localrepo.makelocalrepository()`` for obtaining a new repository | ||||
object. | ||||
Arguments: | ||||
baseui | ||||
Gregory Szorc
|
r39725 | ``ui.ui`` instance that ``ui`` argument was based off of. | ||
ui | ||||
``ui.ui`` instance for use by the repository. | ||||
Gregory Szorc
|
r39724 | |||
origroot | ||||
``bytes`` path to working directory root of this repository. | ||||
wdirvfs | ||||
``vfs.vfs`` rooted at the working directory. | ||||
hgvfs | ||||
``vfs.vfs`` rooted at .hg/ | ||||
Gregory Szorc
|
r39728 | requirements | ||
``set`` of bytestrings representing repository opening requirements. | ||||
Gregory Szorc
|
r39729 | supportedrequirements | ||
``set`` of bytestrings representing repository requirements that we | ||||
know how to open. May be a supetset of ``requirements``. | ||||
Gregory Szorc
|
r39733 | sharedpath | ||
``bytes`` Defining path to storage base directory. Points to a | ||||
``.hg/`` directory somewhere. | ||||
store | ||||
``store.basicstore`` (or derived) instance providing access to | ||||
versioned storage. | ||||
cachevfs | ||||
``vfs.vfs`` used for cache files. | ||||
Boris Feld
|
r40826 | wcachevfs | ||
``vfs.vfs`` used for cache files related to the working copy. | ||||
Gregory Szorc
|
r39886 | features | ||
``set`` of bytestrings defining features/capabilities of this | ||||
instance. | ||||
Gregory Szorc
|
r39724 | intents | ||
``set`` of system strings indicating what this repo will be used | ||||
for. | ||||
Gregory Szorc
|
r39584 | """ | ||
Gregory Szorc
|
r39724 | self.baseui = baseui | ||
Gregory Szorc
|
r39725 | self.ui = ui | ||
Gregory Szorc
|
r39724 | self.origroot = origroot | ||
# vfs rooted at working directory. | ||||
self.wvfs = wdirvfs | ||||
self.root = wdirvfs.base | ||||
# vfs rooted at .hg/. Used to access most non-store paths. | ||||
self.vfs = hgvfs | ||||
self.path = hgvfs.base | ||||
Gregory Szorc
|
r39729 | self.requirements = requirements | ||
Joerg Sonnenberger
|
r47538 | self.nodeconstants = sha1nodeconstants | ||
self.nullid = self.nodeconstants.nullid | ||||
Gregory Szorc
|
r39729 | self.supported = supportedrequirements | ||
Gregory Szorc
|
r39733 | self.sharedpath = sharedpath | ||
self.store = store | ||||
self.cachevfs = cachevfs | ||||
Boris Feld
|
r40826 | self.wcachevfs = wcachevfs | ||
Gregory Szorc
|
r39886 | self.features = features | ||
Gregory Szorc
|
r39584 | |||
Gregory Szorc
|
r32730 | self.filtername = None | ||
Gregory Szorc
|
r39724 | |||
Augie Fackler
|
r43347 | if self.ui.configbool(b'devel', b'all-warnings') or self.ui.configbool( | ||
b'devel', b'check-locks' | ||||
Augie Fackler
|
r43346 | ): | ||
Boris Feld
|
r33436 | self.vfs.audit = self._getvfsward(self.vfs.audit) | ||
Pierre-Yves David
|
r15922 | # A list of callback to shape the phase if no data were found. | ||
# Callback are in the form: func(repo, roots) --> processed root. | ||||
# This list it to be filled by extension during repo setup | ||||
self._phasedefaults = [] | ||||
mpm@selenic.com
|
r1089 | |||
Pierre-Yves David
|
r31111 | color.setup(self.ui) | ||
FUJIWARA Katsunori
|
r19778 | |||
Adrian Buehlmann
|
r6840 | self.spath = self.store.path | ||
FUJIWARA Katsunori
|
r17654 | self.svfs = self.store.vfs | ||
Adrian Buehlmann
|
r6840 | self.sjoin = self.store.join | ||
Augie Fackler
|
r43347 | if self.ui.configbool(b'devel', b'all-warnings') or self.ui.configbool( | ||
b'devel', b'check-locks' | ||||
Augie Fackler
|
r43346 | ): | ||
Augie Fackler
|
r43347 | if util.safehasattr(self.svfs, b'vfs'): # this is filtervfs | ||
Boris Feld
|
r33437 | self.svfs.vfs.audit = self._getsvfsward(self.svfs.vfs.audit) | ||
Augie Fackler
|
r43346 | else: # standard vfs | ||
Boris Feld
|
r33437 | self.svfs.audit = self._getsvfsward(self.svfs.audit) | ||
Benoit Boissinot
|
r3850 | |||
Siddharth Agarwal
|
r26155 | self._dirstatevalidatewarned = False | ||
Greg Ward
|
r9146 | |||
Martijn Pieters
|
r41764 | self._branchcaches = branchmap.BranchMapCache() | ||
Durham Goode
|
r24373 | self._revbranchcache = None | ||
Gregory Szorc
|
r37155 | self._filterpats = {} | ||
Patrick Mezard
|
r5966 | self._datafilters = {} | ||
Matt Mackall
|
r4916 | self._transref = self._lockref = self._wlockref = None | ||
mpm@selenic.com
|
r1089 | |||
Idan Kamara
|
r14929 | # A cache for various files under .hg/ that tracks file changes, | ||
# (used by the filecache decorator) | ||||
# | ||||
# Maps a property name to its util.filecacheentry | ||||
self._filecache = {} | ||||
Pierre-Yves David
|
r18101 | # hold sets of revision to be filtered | ||
# should be cleared when something might have changed the filter value: | ||||
# - new changesets, | ||||
# - phase change, | ||||
# - new obsolescence marker, | ||||
# - working directory parent change, | ||||
# - bookmark changes | ||||
self.filteredrevcache = {} | ||||
Siddharth Agarwal
|
r32814 | # post-dirstate-status hooks | ||
self._postdsstatus = [] | ||||
Sean Farley
|
r23558 | # generic mapping between names and nodes | ||
Ryan McElroy
|
r23561 | self.names = namespaces.namespaces() | ||
Sean Farley
|
r23558 | |||
Gregory Szorc
|
r33302 | # Key to signature value. | ||
self._sparsesignaturecache = {} | ||||
# Signature to cached matcher instance. | ||||
self._sparsematchercache = {} | ||||
r42417 | self._extrafilterid = repoview.extrafilter(ui) | |||
r43412 | self.filecopiesmode = None | |||
Pulkit Goyal
|
r45933 | if requirementsmod.COPIESSDC_REQUIREMENT in self.requirements: | ||
r43412 | self.filecopiesmode = b'changeset-sidedata' | |||
Raphaël Gomès
|
r47447 | self._wanted_sidedata = set() | ||
self._sidedata_computers = {} | ||||
Raphaël Gomès
|
r47848 | sidedatamod.set_sidedata_spec_for_repo(self) | ||
Raphaël Gomès
|
r47447 | |||
Boris Feld
|
r33436 | def _getvfsward(self, origfunc): | ||
"""build a ward for self.vfs""" | ||||
rref = weakref.ref(self) | ||||
Augie Fackler
|
r43346 | |||
Boris Feld
|
r33436 | def checkvfs(path, mode=None): | ||
ret = origfunc(path, mode=mode) | ||||
repo = rref() | ||||
Augie Fackler
|
r43346 | if ( | ||
repo is None | ||||
Augie Fackler
|
r43347 | or not util.safehasattr(repo, b'_wlockref') | ||
or not util.safehasattr(repo, b'_lockref') | ||||
Augie Fackler
|
r43346 | ): | ||
Boris Feld
|
r33436 | return | ||
Augie Fackler
|
r43347 | if mode in (None, b'r', b'rb'): | ||
Boris Feld
|
r33436 | return | ||
if path.startswith(repo.path): | ||||
# truncate name relative to the repository (.hg) | ||||
Augie Fackler
|
r43346 | path = path[len(repo.path) + 1 :] | ||
Augie Fackler
|
r43347 | if path.startswith(b'cache/'): | ||
msg = b'accessing cache with vfs instead of cachevfs: "%s"' | ||||
repo.ui.develwarn(msg % path, stacklevel=3, config=b"cache-vfs") | ||||
Martin von Zweigbergk
|
r45554 | # path prefixes covered by 'lock' | ||
Pulkit Goyal
|
r46003 | vfs_path_prefixes = ( | ||
b'journal.', | ||||
b'undo.', | ||||
b'strip-backup/', | ||||
b'cache/', | ||||
) | ||||
Martin von Zweigbergk
|
r45554 | if any(path.startswith(prefix) for prefix in vfs_path_prefixes): | ||
Boris Feld
|
r33436 | if repo._currentlock(repo._lockref) is None: | ||
Augie Fackler
|
r43346 | repo.ui.develwarn( | ||
Augie Fackler
|
r43347 | b'write with no lock: "%s"' % path, | ||
Augie Fackler
|
r43346 | stacklevel=3, | ||
Augie Fackler
|
r43347 | config=b'check-locks', | ||
Augie Fackler
|
r43346 | ) | ||
Boris Feld
|
r33436 | elif repo._currentlock(repo._wlockref) is None: | ||
# rest of vfs files are covered by 'wlock' | ||||
# | ||||
# exclude special files | ||||
for prefix in self._wlockfreeprefix: | ||||
if path.startswith(prefix): | ||||
return | ||||
Augie Fackler
|
r43346 | repo.ui.develwarn( | ||
Augie Fackler
|
r43347 | b'write with no wlock: "%s"' % path, | ||
Augie Fackler
|
r43346 | stacklevel=3, | ||
Augie Fackler
|
r43347 | config=b'check-locks', | ||
Augie Fackler
|
r43346 | ) | ||
Boris Feld
|
r33436 | return ret | ||
Augie Fackler
|
r43346 | |||
Boris Feld
|
r33436 | return checkvfs | ||
Boris Feld
|
r33437 | def _getsvfsward(self, origfunc): | ||
"""build a ward for self.svfs""" | ||||
rref = weakref.ref(self) | ||||
Augie Fackler
|
r43346 | |||
Boris Feld
|
r33437 | def checksvfs(path, mode=None): | ||
ret = origfunc(path, mode=mode) | ||||
repo = rref() | ||||
Augie Fackler
|
r43347 | if repo is None or not util.safehasattr(repo, b'_lockref'): | ||
Boris Feld
|
r33437 | return | ||
Augie Fackler
|
r43347 | if mode in (None, b'r', b'rb'): | ||
Boris Feld
|
r33437 | return | ||
if path.startswith(repo.sharedpath): | ||||
# truncate name relative to the repository (.hg) | ||||
Augie Fackler
|
r43346 | path = path[len(repo.sharedpath) + 1 :] | ||
Boris Feld
|
r33437 | if repo._currentlock(repo._lockref) is None: | ||
Augie Fackler
|
r43346 | repo.ui.develwarn( | ||
Augie Fackler
|
r43347 | b'write with no lock: "%s"' % path, stacklevel=4 | ||
Augie Fackler
|
r43346 | ) | ||
Boris Feld
|
r33437 | return ret | ||
Augie Fackler
|
r43346 | |||
Boris Feld
|
r33437 | return checksvfs | ||
Peter Arrenbrecht
|
r17192 | def close(self): | ||
Durham Goode
|
r24378 | self._writecaches() | ||
def _writecaches(self): | ||||
if self._revbranchcache: | ||||
self._revbranchcache.write() | ||||
Peter Arrenbrecht
|
r17192 | |||
def _restrictcapabilities(self, caps): | ||||
Augie Fackler
|
r43347 | if self.ui.configbool(b'experimental', b'bundle2-advertise'): | ||
Pierre-Yves David
|
r20955 | caps = set(caps) | ||
Augie Fackler
|
r43346 | capsblob = bundle2.encodecaps( | ||
Augie Fackler
|
r43347 | bundle2.getrepocaps(self, role=b'client') | ||
Augie Fackler
|
r43346 | ) | ||
Augie Fackler
|
r43347 | caps.add(b'bundle2=' + urlreq.quote(capsblob)) | ||
Charles Chamberlain
|
r47664 | if self.ui.configbool(b'experimental', b'narrow'): | ||
caps.add(wireprototypes.NARROWCAP) | ||||
Peter Arrenbrecht
|
r17192 | return caps | ||
Yuya Nishihara
|
r39348 | # Don't cache auditor/nofsauditor, or you'll end up with reference cycle: | ||
# self -> auditor -> self._checknested -> self | ||||
@property | ||||
def auditor(self): | ||||
# This is only used by context.workingctx.match in order to | ||||
# detect files in subrepos. | ||||
return pathutil.pathauditor(self.root, callback=self._checknested) | ||||
@property | ||||
def nofsauditor(self): | ||||
# This is only used by context.basectx.match in order to detect | ||||
# files in subrepos. | ||||
Augie Fackler
|
r43346 | return pathutil.pathauditor( | ||
self.root, callback=self._checknested, realfs=False, cached=True | ||||
) | ||||
Yuya Nishihara
|
r39348 | |||
Martin Geisler
|
r12162 | def _checknested(self, path): | ||
"""Determine if path is a legal nested repository.""" | ||||
if not path.startswith(self.root): | ||||
return False | ||||
Augie Fackler
|
r43346 | subpath = path[len(self.root) + 1 :] | ||
FUJIWARA Katsunori
|
r15722 | normsubpath = util.pconvert(subpath) | ||
Martin Geisler
|
r12162 | |||
# XXX: Checking against the current working copy is wrong in | ||||
# the sense that it can reject things like | ||||
# | ||||
# $ hg cat -r 10 sub/x.txt | ||||
# | ||||
# if sub/ is no longer a subrepository in the working copy | ||||
# parent revision. | ||||
# | ||||
# However, it can of course also allow things that would have | ||||
# been rejected before, such as the above cat command if sub/ | ||||
# is a subrepository now, but was a normal directory before. | ||||
# The old path auditor would have rejected by mistake since it | ||||
# panics when it sees sub/.hg/. | ||||
# | ||||
Martin Geisler
|
r12174 | # All in all, checking against the working copy seems sensible | ||
# since we want to prevent access to nested repositories on | ||||
# the filesystem *now*. | ||||
ctx = self[None] | ||||
Martin Geisler
|
r12162 | parts = util.splitpath(subpath) | ||
while parts: | ||||
Augie Fackler
|
r43347 | prefix = b'/'.join(parts) | ||
Martin Geisler
|
r12162 | if prefix in ctx.substate: | ||
FUJIWARA Katsunori
|
r15722 | if prefix == normsubpath: | ||
Martin Geisler
|
r12162 | return True | ||
else: | ||||
sub = ctx.sub(prefix) | ||||
Augie Fackler
|
r43346 | return sub.checknested(subpath[len(prefix) + 1 :]) | ||
Martin Geisler
|
r12162 | else: | ||
parts.pop() | ||||
return False | ||||
Peter Arrenbrecht
|
r17192 | def peer(self): | ||
Augie Fackler
|
r43346 | return localpeer(self) # not cached to avoid reference cycle | ||
Peter Arrenbrecht
|
r17192 | |||
Pierre-Yves David
|
r17993 | def unfiltered(self): | ||
"""Return unfiltered version of the repository | ||||
Mads Kiilerich
|
r18644 | Intended to be overwritten by filtered repo.""" | ||
Pierre-Yves David
|
r17993 | return self | ||
Pulkit Goyal
|
r35508 | def filtered(self, name, visibilityexceptions=None): | ||
r42274 | """Return a filtered version of a repository | |||
The `name` parameter is the identifier of the requested view. This | ||||
will return a repoview object set "exactly" to the specified view. | ||||
This function does not apply recursive filtering to a repository. For | ||||
example calling `repo.filtered("served")` will return a repoview using | ||||
the "served" view, regardless of the initial view used by `repo`. | ||||
In other word, there is always only one level of `repoview` "filtering". | ||||
""" | ||||
Augie Fackler
|
r43347 | if self._extrafilterid is not None and b'%' not in name: | ||
name = name + b'%' + self._extrafilterid | ||||
r42417 | ||||
Yuya Nishihara
|
r35248 | cls = repoview.newtype(self.unfiltered().__class__) | ||
Pulkit Goyal
|
r35508 | return cls(self, name, visibilityexceptions) | ||
Pierre-Yves David
|
r18100 | |||
Augie Fackler
|
r43346 | @mixedrepostorecache( | ||
Augie Fackler
|
r43347 | (b'bookmarks', b'plain'), | ||
(b'bookmarks.current', b'plain'), | ||||
(b'bookmarks', b''), | ||||
(b'00changelog.i', b''), | ||||
Augie Fackler
|
r43346 | ) | ||
Matt Mackall
|
r13355 | def _bookmarks(self): | ||
r42903 | # Since the multiple files involved in the transaction cannot be | |||
# written atomically (with current repository format), there is a race | ||||
# condition here. | ||||
# | ||||
# 1) changelog content A is read | ||||
# 2) outside transaction update changelog to content B | ||||
# 3) outside transaction update bookmark file referring to content B | ||||
# 4) bookmarks file content is read and filtered against changelog-A | ||||
# | ||||
# When this happens, bookmarks against nodes missing from A are dropped. | ||||
# | ||||
# Having this happening during read is not great, but it become worse | ||||
# when this happen during write because the bookmarks to the "unknown" | ||||
# nodes will be dropped for good. However, writes happen within locks. | ||||
# This locking makes it possible to have a race free consistent read. | ||||
# For this purpose data read from disc before locking are | ||||
# "invalidated" right after the locks are taken. This invalidations are | ||||
# "light", the `filecache` mechanism keep the data in memory and will | ||||
# reuse them if the underlying files did not changed. Not parsing the | ||||
# same data multiple times helps performances. | ||||
# | ||||
# Unfortunately in the case describe above, the files tracked by the | ||||
# bookmarks file cache might not have changed, but the in-memory | ||||
# content is still "wrong" because we used an older changelog content | ||||
# to process the on-disk data. So after locking, the changelog would be | ||||
# refreshed but `_bookmarks` would be preserved. | ||||
# Adding `00changelog.i` to the list of tracked file is not | ||||
# enough, because at the time we build the content for `_bookmarks` in | ||||
# (4), the changelog file has already diverged from the content used | ||||
# for loading `changelog` in (1) | ||||
# | ||||
# To prevent the issue, we force the changelog to be explicitly | ||||
# reloaded while computing `_bookmarks`. The data race can still happen | ||||
# without the lock (with a narrower window), but it would no longer go | ||||
# undetected during the lock time refresh. | ||||
# | ||||
# The new schedule is as follow | ||||
# | ||||
# 1) filecache logic detect that `_bookmarks` needs to be computed | ||||
# 2) cachestat for `bookmarks` and `changelog` are captured (for book) | ||||
# 3) We force `changelog` filecache to be tested | ||||
# 4) cachestat for `changelog` are captured (for changelog) | ||||
# 5) `_bookmarks` is computed and cached | ||||
# | ||||
# The step in (3) ensure we have a changelog at least as recent as the | ||||
# cache stat computed in (1). As a result at locking time: | ||||
# * if the changelog did not changed since (1) -> we can reuse the data | ||||
# * otherwise -> the bookmarks get refreshed. | ||||
self._refreshchangelog() | ||||
Augie Fackler
|
r17922 | return bookmarks.bmstore(self) | ||
Matt Mackall
|
r13355 | |||
r42710 | def _refreshchangelog(self): | |||
"""make sure the in memory changelog match the on-disk one""" | ||||
Gregory Szorc
|
r43732 | if 'changelog' in vars(self) and self.currenttransaction() is None: | ||
r42710 | del self.changelog | |||
Augie Fackler
|
r27698 | @property | ||
Ryan McElroy
|
r24947 | def _activebookmark(self): | ||
Augie Fackler
|
r27698 | return self._bookmarks.active | ||
Martin Geisler
|
r12162 | |||
Joerg Sonnenberger
|
r35310 | # _phasesets depend on changelog. what we need is to call | ||
# _phasecache.invalidate() if '00changelog.i' was changed, but it | ||||
Yuya Nishihara
|
r26405 | # can't be easily expressed in filecache mechanism. | ||
Augie Fackler
|
r43347 | @storecache(b'phaseroots', b'00changelog.i') | ||
Patrick Mezard
|
r16657 | def _phasecache(self): | ||
return phases.phasecache(self, self._phasedefaults) | ||||
Pierre-Yves David
|
r15420 | |||
Augie Fackler
|
r43347 | @storecache(b'obsstore') | ||
Pierre-Yves.David@ens-lyon.org
|
r17070 | def obsstore(self): | ||
Gregory Szorc
|
r32729 | return obsolete.makestore(self.ui, self) | ||
Pierre-Yves.David@ens-lyon.org
|
r17070 | |||
Augie Fackler
|
r43347 | @storecache(b'00changelog.i') | ||
Matt Mackall
|
r8260 | def changelog(self): | ||
r45359 | # load dirstate before changelog to avoid race see issue6303 | |||
self.dirstate.prefetch_parents() | ||||
Kyle Lippincott
|
r47349 | return self.store.changelog( | ||
txnutil.mayhavepending(self.root), | ||||
concurrencychecker=revlogchecker.get_checker(self.ui, b'changelog'), | ||||
) | ||||
Matt Mackall
|
r8260 | |||
Augie Fackler
|
r43347 | @storecache(b'00manifest.i') | ||
Durham Goode
|
r29825 | def manifestlog(self): | ||
Augie Fackler
|
r43175 | return self.store.manifestlog(self, self._storenarrowmatch) | ||
Durham Goode
|
r29825 | |||
Augie Fackler
|
r43347 | @repofilecache(b'dirstate') | ||
Matt Mackall
|
r8260 | def dirstate(self): | ||
Kyle Lippincott
|
r38142 | return self._makedirstate() | ||
def _makedirstate(self): | ||||
Kyle Lippincott
|
r38147 | """Extension point for wrapping the dirstate per-repo.""" | ||
Gregory Szorc
|
r33373 | sparsematchfn = lambda: sparse.matcher(self) | ||
Augie Fackler
|
r43346 | return dirstate.dirstate( | ||
Joerg Sonnenberger
|
r47538 | self.vfs, | ||
self.ui, | ||||
self.root, | ||||
self._dirstatevalidate, | ||||
sparsematchfn, | ||||
self.nodeconstants, | ||||
Augie Fackler
|
r43346 | ) | ||
Matt Mackall
|
r13032 | |||
Siddharth Agarwal
|
r26155 | def _dirstatevalidate(self, node): | ||
try: | ||||
self.changelog.rev(node) | ||||
return node | ||||
except error.LookupError: | ||||
if not self._dirstatevalidatewarned: | ||||
self._dirstatevalidatewarned = True | ||||
Augie Fackler
|
r43346 | self.ui.warn( | ||
Martin von Zweigbergk
|
r43387 | _(b"warning: ignoring unknown working parent %s!\n") | ||
Augie Fackler
|
r43346 | % short(node) | ||
) | ||||
Joerg Sonnenberger
|
r47771 | return self.nullid | ||
Vadim Gelfer
|
r2155 | |||
Martin von Zweigbergk
|
r38908 | @storecache(narrowspec.FILENAME) | ||
Martin von Zweigbergk
|
r36489 | def narrowpats(self): | ||
"""matcher patterns for this repository's narrowspec | ||||
A tuple of (includes, excludes). | ||||
""" | ||||
Martin von Zweigbergk
|
r39794 | return narrowspec.load(self) | ||
Martin von Zweigbergk
|
r36489 | |||
Martin von Zweigbergk
|
r38908 | @storecache(narrowspec.FILENAME) | ||
Martin von Zweigbergk
|
r41266 | def _storenarrowmatch(self): | ||
Pulkit Goyal
|
r45932 | if requirementsmod.NARROW_REQUIREMENT not in self.requirements: | ||
Martin von Zweigbergk
|
r41825 | return matchmod.always() | ||
Martin von Zweigbergk
|
r41266 | include, exclude = self.narrowpats | ||
return narrowspec.match(self.root, include=include, exclude=exclude) | ||||
@storecache(narrowspec.FILENAME) | ||||
Martin von Zweigbergk
|
r36489 | def _narrowmatch(self): | ||
Pulkit Goyal
|
r45932 | if requirementsmod.NARROW_REQUIREMENT not in self.requirements: | ||
Martin von Zweigbergk
|
r41825 | return matchmod.always() | ||
Martin von Zweigbergk
|
r41072 | narrowspec.checkworkingcopynarrowspec(self) | ||
Martin von Zweigbergk
|
r36489 | include, exclude = self.narrowpats | ||
return narrowspec.match(self.root, include=include, exclude=exclude) | ||||
Martin von Zweigbergk
|
r40122 | def narrowmatch(self, match=None, includeexact=False): | ||
Martin von Zweigbergk
|
r40118 | """matcher corresponding the the repo's narrowspec | ||
If `match` is given, then that will be intersected with the narrow | ||||
matcher. | ||||
Martin von Zweigbergk
|
r40122 | |||
If `includeexact` is True, then any exact matches from `match` will | ||||
be included even if they're outside the narrowspec. | ||||
Martin von Zweigbergk
|
r40118 | """ | ||
if match: | ||||
Martin von Zweigbergk
|
r40122 | if includeexact and not self._narrowmatch.always(): | ||
# do not exclude explicitly-specified paths so that they can | ||||
# be warned later on | ||||
Martin von Zweigbergk
|
r41825 | em = matchmod.exact(match.files()) | ||
Martin von Zweigbergk
|
r40122 | nm = matchmod.unionmatcher([self._narrowmatch, em]) | ||
return matchmod.intersectmatchers(match, nm) | ||||
Martin von Zweigbergk
|
r40118 | return matchmod.intersectmatchers(match, self._narrowmatch) | ||
Martin von Zweigbergk
|
r36489 | return self._narrowmatch | ||
def setnarrowpats(self, newincludes, newexcludes): | ||||
Yuya Nishihara
|
r39593 | narrowspec.save(self, newincludes, newexcludes) | ||
Martin von Zweigbergk
|
r36489 | self.invalidate(clearfilecache=True) | ||
r44563 | @unfilteredpropertycache | |||
def _quick_access_changeid_null(self): | ||||
return { | ||||
Joerg Sonnenberger
|
r47771 | b'null': (nullrev, self.nodeconstants.nullid), | ||
nullrev: (nullrev, self.nodeconstants.nullid), | ||||
self.nullid: (nullrev, self.nullid), | ||||
r44563 | } | |||
@unfilteredpropertycache | ||||
def _quick_access_changeid_wc(self): | ||||
# also fast path access to the working copy parents | ||||
# however, only do it for filter that ensure wc is visible. | ||||
Kyle Lippincott
|
r46036 | quick = self._quick_access_changeid_null.copy() | ||
r44563 | cl = self.unfiltered().changelog | |||
for node in self.dirstate.parents(): | ||||
Joerg Sonnenberger
|
r47771 | if node == self.nullid: | ||
r44563 | continue | |||
rev = cl.index.get_rev(node) | ||||
if rev is None: | ||||
# unknown working copy parent case: | ||||
# | ||||
# skip the fast path and let higher code deal with it | ||||
continue | ||||
pair = (rev, node) | ||||
quick[rev] = pair | ||||
quick[node] = pair | ||||
r44566 | # also add the parents of the parents | |||
for r in cl.parentrevs(rev): | ||||
if r == nullrev: | ||||
continue | ||||
n = cl.node(r) | ||||
pair = (r, n) | ||||
quick[r] = pair | ||||
quick[n] = pair | ||||
r44564 | p1node = self.dirstate.p1() | |||
Joerg Sonnenberger
|
r47771 | if p1node != self.nullid: | ||
r44564 | quick[b'.'] = quick[p1node] | |||
r44563 | return quick | |||
@unfilteredmethod | ||||
def _quick_access_changeid_invalidate(self): | ||||
if '_quick_access_changeid_wc' in vars(self): | ||||
del self.__dict__['_quick_access_changeid_wc'] | ||||
@property | ||||
r44204 | def _quick_access_changeid(self): | |||
"""an helper dictionnary for __getitem__ calls | ||||
This contains a list of symbol we can recognise right away without | ||||
further processing. | ||||
""" | ||||
r44563 | if self.filtername in repoview.filter_has_wc: | |||
Kyle Lippincott
|
r46036 | return self._quick_access_changeid_wc | ||
return self._quick_access_changeid_null | ||||
r44204 | ||||
Matt Mackall
|
r6747 | def __getitem__(self, changeid): | ||
r44189 | # dealing with special cases | |||
Yuya Nishihara
|
r32658 | if changeid is None: | ||
Matt Mackall
|
r6747 | return context.workingctx(self) | ||
Martin von Zweigbergk
|
r37191 | if isinstance(changeid, context.basectx): | ||
return changeid | ||||
r44189 | ||||
# dealing with multiple revisions | ||||
Eric Sumner
|
r23630 | if isinstance(changeid, slice): | ||
Yuya Nishihara
|
r32658 | # wdirrev isn't contiguous so the slice shouldn't include it | ||
Augie Fackler
|
r43346 | return [ | ||
self[i] | ||||
for i in pycompat.xrange(*changeid.indices(len(self))) | ||||
if i not in self.changelog.filteredrevs | ||||
] | ||||
r44189 | ||||
r44190 | # dealing with some special values | |||
r44204 | quick_access = self._quick_access_changeid.get(changeid) | |||
if quick_access is not None: | ||||
rev, node = quick_access | ||||
return context.changectx(self, rev, node, maybe_filtered=False) | ||||
r44191 | if changeid == b'tip': | |||
node = self.changelog.tip() | ||||
rev = self.changelog.rev(node) | ||||
return context.changectx(self, rev, node) | ||||
r44189 | # dealing with arbitrary values | |||
Yuya Nishihara
|
r32658 | try: | ||
Martin von Zweigbergk
|
r39994 | if isinstance(changeid, int): | ||
node = self.changelog.node(changeid) | ||||
rev = changeid | ||||
Augie Fackler
|
r43347 | elif changeid == b'.': | ||
Martin von Zweigbergk
|
r39994 | # this is a hack to delay/avoid loading obsmarkers | ||
# when we know that '.' won't be hidden | ||||
node = self.dirstate.p1() | ||||
rev = self.unfiltered().changelog.rev(node) | ||||
Joerg Sonnenberger
|
r47816 | elif len(changeid) == self.nodeconstants.nodelen: | ||
Martin von Zweigbergk
|
r39994 | try: | ||
node = changeid | ||||
rev = self.changelog.rev(changeid) | ||||
except error.FilteredLookupError: | ||||
Augie Fackler
|
r43346 | changeid = hex(changeid) # for the error message | ||
Martin von Zweigbergk
|
r39994 | raise | ||
except LookupError: | ||||
# check if it might have come from damaged dirstate | ||||
# | ||||
# XXX we could avoid the unfiltered if we had a recognizable | ||||
# exception for filtered changeset access | ||||
Augie Fackler
|
r43346 | if ( | ||
self.local() | ||||
and changeid in self.unfiltered().dirstate.parents() | ||||
): | ||||
Augie Fackler
|
r43347 | msg = _(b"working directory has unknown parent '%s'!") | ||
Martin von Zweigbergk
|
r39994 | raise error.Abort(msg % short(changeid)) | ||
Augie Fackler
|
r43346 | changeid = hex(changeid) # for the error message | ||
Martin von Zweigbergk
|
r40099 | raise | ||
Martin von Zweigbergk
|
r39994 | |||
Joerg Sonnenberger
|
r47815 | elif len(changeid) == 2 * self.nodeconstants.nodelen: | ||
Martin von Zweigbergk
|
r40099 | node = bin(changeid) | ||
rev = self.changelog.rev(node) | ||||
Martin von Zweigbergk
|
r39994 | else: | ||
raise error.ProgrammingError( | ||||
Augie Fackler
|
r43347 | b"unsupported changeid '%s' of type %s" | ||
Manuel Jacob
|
r44109 | % (changeid, pycompat.bytestr(type(changeid))) | ||
Augie Fackler
|
r43346 | ) | ||
Martin von Zweigbergk
|
r39994 | |||
Martin von Zweigbergk
|
r40100 | return context.changectx(self, rev, node) | ||
Martin von Zweigbergk
|
r39994 | except (error.FilteredIndexError, error.FilteredLookupError): | ||
Augie Fackler
|
r43346 | raise error.FilteredRepoLookupError( | ||
Augie Fackler
|
r43347 | _(b"filtered revision '%s'") % pycompat.bytestr(changeid) | ||
Augie Fackler
|
r43346 | ) | ||
Martin von Zweigbergk
|
r40099 | except (IndexError, LookupError): | ||
Augie Fackler
|
r40389 | raise error.RepoLookupError( | ||
Augie Fackler
|
r43347 | _(b"unknown revision '%s'") % pycompat.bytestr(changeid) | ||
Augie Fackler
|
r43346 | ) | ||
Yuya Nishihara
|
r32658 | except error.WdirUnsupported: | ||
return context.workingctx(self) | ||||
Matt Mackall
|
r6747 | |||
Alexander Solovyov
|
r9924 | def __contains__(self, changeid): | ||
Martin von Zweigbergk
|
r46730 | """True if the given changeid exists""" | ||
Alexander Solovyov
|
r9924 | try: | ||
Yuya Nishihara
|
r24320 | self[changeid] | ||
return True | ||||
Yuya Nishihara
|
r37815 | except error.RepoLookupError: | ||
Alexander Solovyov
|
r9924 | return False | ||
Matt Mackall
|
r6750 | def __nonzero__(self): | ||
return True | ||||
Gregory Szorc
|
r31476 | __bool__ = __nonzero__ | ||
Matt Mackall
|
r6750 | def __len__(self): | ||
Yuya Nishihara
|
r35754 | # no need to pay the cost of repoview.changelog | ||
unfi = self.unfiltered() | ||||
return len(unfi.changelog) | ||||
Matt Mackall
|
r6750 | |||
def __iter__(self): | ||||
Pierre-Yves David
|
r17675 | return iter(self.changelog) | ||
Vadim Gelfer
|
r2155 | |||
Matt Mackall
|
r15403 | def revs(self, expr, *args): | ||
Augie Fackler
|
r46554 | """Find revisions matching a revset. | ||
Gregory Szorc
|
r27071 | |||
The revset is specified as a string ``expr`` that may contain | ||||
Yuya Nishihara
|
r31024 | %-formatting to escape certain types. See ``revsetlang.formatspec``. | ||
Gregory Szorc
|
r27071 | |||
Gregory Szorc
|
r29417 | Revset aliases from the configuration are not expanded. To expand | ||
Yuya Nishihara
|
r31025 | user aliases, consider calling ``scmutil.revrange()`` or | ||
``repo.anyrevs([expr], user=True)``. | ||||
Gregory Szorc
|
r29417 | |||
Matt Harbison
|
r44532 | Returns a smartset.abstractsmartset, which is a list-like interface | ||
Gregory Szorc
|
r27071 | that contains integer revisions. | ||
Augie Fackler
|
r46554 | """ | ||
Boris Feld
|
r41258 | tree = revsetlang.spectree(expr, *args) | ||
return revset.makematcher(tree)(self) | ||||
Matt Mackall
|
r15403 | |||
Matt Mackall
|
r14902 | def set(self, expr, *args): | ||
Augie Fackler
|
r46554 | """Find revisions matching a revset and emit changectx instances. | ||
Gregory Szorc
|
r27071 | |||
This is a convenience wrapper around ``revs()`` that iterates the | ||||
result and is a generator of changectx instances. | ||||
Gregory Szorc
|
r29417 | |||
Revset aliases from the configuration are not expanded. To expand | ||||
user aliases, consider calling ``scmutil.revrange()``. | ||||
Augie Fackler
|
r46554 | """ | ||
Matt Mackall
|
r15403 | for r in self.revs(expr, *args): | ||
Matt Mackall
|
r14902 | yield self[r] | ||
Jun Wu
|
r33336 | def anyrevs(self, specs, user=False, localalias=None): | ||
Augie Fackler
|
r46554 | """Find revisions matching one of the given revsets. | ||
Yuya Nishihara
|
r31025 | |||
Revset aliases from the configuration are not expanded by default. To | ||||
Jun Wu
|
r33336 | expand user aliases, specify ``user=True``. To provide some local | ||
definitions overriding user aliases, set ``localalias`` to | ||||
``{name: definitionstring}``. | ||||
Augie Fackler
|
r46554 | """ | ||
r44197 | if specs == [b'null']: | |||
return revset.baseset([nullrev]) | ||||
r44565 | if specs == [b'.']: | |||
quick_data = self._quick_access_changeid.get(b'.') | ||||
if quick_data is not None: | ||||
return revset.baseset([quick_data[0]]) | ||||
Yuya Nishihara
|
r31025 | if user: | ||
Augie Fackler
|
r43346 | m = revset.matchany( | ||
self.ui, | ||||
specs, | ||||
lookup=revset.lookupfn(self), | ||||
localalias=localalias, | ||||
) | ||||
Yuya Nishihara
|
r31025 | else: | ||
Jun Wu
|
r33336 | m = revset.matchany(None, specs, localalias=localalias) | ||
Yuya Nishihara
|
r31025 | return m(self) | ||
Vadim Gelfer
|
r2673 | def url(self): | ||
Augie Fackler
|
r43347 | return b'file:' + self.root | ||
Vadim Gelfer
|
r2673 | |||
Vadim Gelfer
|
r1718 | def hook(self, name, throw=False, **args): | ||
Gregory Szorc
|
r21866 | """Call a hook, passing this repo instance. | ||
This a convenience method to aid invoking hooks. Extensions likely | ||||
won't call this unless they have registered a custom hook or are | ||||
replacing code that is expected to call a hook. | ||||
""" | ||||
Matt Mackall
|
r4622 | return hook.hook(self.ui, self, name, throw, **args) | ||
mpm@selenic.com
|
r1089 | |||
Pierre-Yves David
|
r18013 | @filteredpropertycache | ||
Idan Kamara
|
r14936 | def _tagscache(self): | ||
Augie Fackler
|
r46554 | """Returns a tagscache object that contains various tags related | ||
caches.""" | ||||
Idan Kamara
|
r14936 | |||
# This simplifies its cache management by having one decorated | ||||
# function (this one) and the rest simply fetch things from it. | ||||
class tagscache(object): | ||||
def __init__(self): | ||||
# These two define the set of tags for this repository. tags | ||||
# maps tag name to node; tagtypes maps tag name to 'global' or | ||||
# 'local'. (Global tags are defined by .hgtags across all | ||||
# heads, and local tags are defined in .hg/localtags.) | ||||
# They constitute the in-memory cache of tags. | ||||
self.tags = self.tagtypes = None | ||||
self.nodetagscache = self.tagslist = None | ||||
cache = tagscache() | ||||
cache.tags, cache.tagtypes = self._findtags() | ||||
return cache | ||||
mpm@selenic.com
|
r1089 | def tags(self): | ||
'''return a mapping of tag to node''' | ||||
Matt Mackall
|
r16371 | t = {} | ||
Pierre-Yves David
|
r17715 | if self.changelog.filteredrevs: | ||
tags, tt = self._findtags() | ||||
else: | ||||
tags = self._tagscache.tags | ||||
Boris Feld
|
r40776 | rev = self.changelog.rev | ||
Gregory Szorc
|
r43376 | for k, v in pycompat.iteritems(tags): | ||
Matt Mackall
|
r16371 | try: | ||
# ignore tags to unknown nodes | ||||
Boris Feld
|
r40776 | rev(v) | ||
Matt Mackall
|
r16371 | t[k] = v | ||
Bryan O'Sullivan
|
r16679 | except (error.LookupError, ValueError): | ||
Matt Mackall
|
r16371 | pass | ||
return t | ||||
Matt Mackall
|
r4210 | |||
Greg Ward
|
r9145 | def _findtags(self): | ||
Augie Fackler
|
r46554 | """Do the hard work of finding tags. Return a pair of dicts | ||
Greg Ward
|
r9145 | (tags, tagtypes) where tags maps tag name to node, and tagtypes | ||
maps tag name to a string like \'global\' or \'local\'. | ||||
Subclasses or extensions are free to add their own tags, but | ||||
should be aware that the returned dicts will be retained for the | ||||
Augie Fackler
|
r46554 | duration of the localrepo object.""" | ||
Greg Ward
|
r9145 | |||
# XXX what tagtype should subclasses/extensions use? Currently | ||||
# mq and bookmarks add tags, but do not set the tagtype at all. | ||||
# Should each extension invent its own tag type? Should there | ||||
# be one tagtype for all such "virtual" tags? Or is the status | ||||
# quo fine? | ||||
Matt Mackall
|
r4210 | |||
Pierre-Yves David
|
r31709 | # map tag name to (node, hist) | ||
alltags = tagsmod.findglobaltags(self.ui, self) | ||||
# map tag name to tag type | ||||
Augie Fackler
|
r44937 | tagtypes = {tag: b'global' for tag in alltags} | ||
Pierre-Yves David
|
r31706 | |||
Benoit Boissinot
|
r10651 | tagsmod.readlocaltags(self.ui, self, alltags, tagtypes) | ||
Osku Salerma
|
r5657 | |||
Greg Ward
|
r9152 | # Build the return dicts. Have to re-encode tag names because | ||
# the tags module always uses UTF-8 (in order not to lose info | ||||
# writing to the cache), but the rest of Mercurial wants them in | ||||
# local encoding. | ||||
Greg Ward
|
r9145 | tags = {} | ||
Gregory Szorc
|
r43376 | for (name, (node, hist)) in pycompat.iteritems(alltags): | ||
Joerg Sonnenberger
|
r47771 | if node != self.nullid: | ||
Matt Mackall
|
r16371 | tags[encoding.tolocal(name)] = node | ||
Augie Fackler
|
r43347 | tags[b'tip'] = self.changelog.tip() | ||
Augie Fackler
|
r44937 | tagtypes = { | ||
encoding.tolocal(name): value | ||||
for (name, value) in pycompat.iteritems(tagtypes) | ||||
} | ||||
Greg Ward
|
r9145 | return (tags, tagtypes) | ||
mpm@selenic.com
|
r1089 | |||
Osku Salerma
|
r5657 | def tagtype(self, tagname): | ||
Augie Fackler
|
r46554 | """ | ||
Osku Salerma
|
r5657 | return the type of the given tag. result can be: | ||
'local' : a local tag | ||||
'global' : a global tag | ||||
None : tag does not exist | ||||
Augie Fackler
|
r46554 | """ | ||
Osku Salerma
|
r5657 | |||
Idan Kamara
|
r14936 | return self._tagscache.tagtypes.get(tagname) | ||
Osku Salerma
|
r5657 | |||
mpm@selenic.com
|
r1089 | def tagslist(self): | ||
'''return a list of tags ordered by revision''' | ||||
Idan Kamara
|
r14936 | if not self._tagscache.tagslist: | ||
l = [] | ||||
Gregory Szorc
|
r43376 | for t, n in pycompat.iteritems(self.tags()): | ||
Mads Kiilerich
|
r22201 | l.append((self.changelog.rev(n), t, n)) | ||
Idan Kamara
|
r14936 | self._tagscache.tagslist = [(t, n) for r, t, n in sorted(l)] | ||
return self._tagscache.tagslist | ||||
mpm@selenic.com
|
r1089 | |||
def nodetags(self, node): | ||||
'''return the tags associated with a node''' | ||||
Idan Kamara
|
r14936 | if not self._tagscache.nodetagscache: | ||
nodetagscache = {} | ||||
Gregory Szorc
|
r43376 | for t, n in pycompat.iteritems(self._tagscache.tags): | ||
Idan Kamara
|
r14936 | nodetagscache.setdefault(n, []).append(t) | ||
Gregory Szorc
|
r43374 | for tags in pycompat.itervalues(nodetagscache): | ||
Eric Eisner
|
r11047 | tags.sort() | ||
Idan Kamara
|
r14936 | self._tagscache.nodetagscache = nodetagscache | ||
return self._tagscache.nodetagscache.get(node, []) | ||||
mpm@selenic.com
|
r1089 | |||
David Soria Parra
|
r13384 | def nodebookmarks(self, node): | ||
Augie Fackler
|
r27166 | """return the list of bookmarks pointing to the specified node""" | ||
Yuya Nishihara
|
r37867 | return self._bookmarks.names(node) | ||
David Soria Parra
|
r13384 | |||
Georg Brandl
|
r12066 | def branchmap(self): | ||
Augie Fackler
|
r46554 | """returns a dictionary {branch: [branchheads]} with branchheads | ||
ordered by increasing revision number""" | ||||
Martijn Pieters
|
r41764 | return self._branchcaches[self] | ||
Pierre-Yves David
|
r17714 | |||
Durham Goode
|
r24373 | @unfilteredmethod | ||
def revbranchcache(self): | ||||
if not self._revbranchcache: | ||||
self._revbranchcache = branchmap.revbranchcache(self.unfiltered()) | ||||
return self._revbranchcache | ||||
Joerg Sonnenberger
|
r47083 | def register_changeset(self, rev, changelogrevision): | ||
Joerg Sonnenberger
|
r47084 | self.revbranchcache().setdata(rev, changelogrevision) | ||
Joerg Sonnenberger
|
r47083 | |||
Sean Farley
|
r23775 | def branchtip(self, branch, ignoremissing=False): | ||
Augie Fackler
|
r46554 | """return the tip node for a given branch | ||
Sean Farley
|
r23775 | |||
If ignoremissing is True, then this method will not raise an error. | ||||
This is helpful for callers that only expect None for a missing branch | ||||
(e.g. namespace). | ||||
Augie Fackler
|
r46554 | """ | ||
Brodie Rao
|
r20187 | try: | ||
return self.branchmap().branchtip(branch) | ||||
except KeyError: | ||||
Sean Farley
|
r23775 | if not ignoremissing: | ||
Augie Fackler
|
r43347 | raise error.RepoLookupError(_(b"unknown branch '%s'") % branch) | ||
Sean Farley
|
r23775 | else: | ||
pass | ||||
Brodie Rao
|
r16719 | |||
mpm@selenic.com
|
r1089 | def lookup(self, key): | ||
Martin von Zweigbergk
|
r42248 | node = scmutil.revsymbol(self, key).node() | ||
if node is None: | ||||
Augie Fackler
|
r43347 | raise error.RepoLookupError(_(b"unknown revision '%s'") % key) | ||
Martin von Zweigbergk
|
r42248 | return node | ||
mpm@selenic.com
|
r1089 | |||
Martin von Zweigbergk
|
r37369 | def lookupbranch(self, key): | ||
Pulkit Goyal
|
r42171 | if self.branchmap().hasbranch(key): | ||
Steve Losh
|
r10960 | return key | ||
Martin von Zweigbergk
|
r37370 | return scmutil.revsymbol(self, key).branch() | ||
Steve Losh
|
r10960 | |||
Peter Arrenbrecht
|
r13723 | def known(self, nodes): | ||
Pierre-Yves David
|
r27319 | cl = self.changelog | ||
r43955 | get_rev = cl.index.get_rev | |||
Pierre-Yves David
|
r27319 | filtered = cl.filteredrevs | ||
Pierre-Yves David
|
r15889 | result = [] | ||
for n in nodes: | ||||
r43955 | r = get_rev(n) | |||
Pierre-Yves David
|
r27319 | resp = not (r is None or r in filtered) | ||
Pierre-Yves David
|
r15889 | result.append(resp) | ||
return result | ||||
Peter Arrenbrecht
|
r13723 | |||
mpm@selenic.com
|
r1089 | def local(self): | ||
Matt Mackall
|
r14603 | return self | ||
mpm@selenic.com
|
r1089 | |||
Matt Mackall
|
r25623 | def publishing(self): | ||
Matt Mackall
|
r25625 | # it's safe (and desirable) to trust the publish flag unconditionally | ||
# so that we don't finalize changes shared between users via ssh or nfs | ||||
Augie Fackler
|
r43347 | return self.ui.configbool(b'phases', b'publish', untrusted=True) | ||
Matt Mackall
|
r25623 | |||
Peter Arrenbrecht
|
r17192 | def cancopy(self): | ||
Pierre-Yves David
|
r20332 | # so statichttprepo's override of local() works | ||
if not self.local(): | ||||
return False | ||||
Matt Mackall
|
r25624 | if not self.publishing(): | ||
Pierre-Yves David
|
r20332 | return True | ||
# if publishing we can't copy if there is filtered content | ||||
Augie Fackler
|
r43347 | return not self.filtered(b'visible').changelog.filteredrevs | ||
Peter Arrenbrecht
|
r17192 | |||
Angel Ezquerra
|
r23666 | def shared(self): | ||
'''the type of shared repository (None if not shared)''' | ||||
if self.sharedpath != self.path: | ||||
Augie Fackler
|
r43347 | return b'store' | ||
Angel Ezquerra
|
r23666 | return None | ||
Angel Ezquerra
|
r22362 | def wjoin(self, f, *insidef): | ||
Angel Ezquerra
|
r23714 | return self.vfs.reljoin(self.root, f, *insidef) | ||
mpm@selenic.com
|
r1089 | |||
Joerg Sonnenberger
|
r47771 | def setparents(self, p1, p2=None): | ||
if p2 is None: | ||||
p2 = self.nullid | ||||
Martin von Zweigbergk
|
r44504 | self[None].setparents(p1, p2) | ||
r44563 | self._quick_access_changeid_invalidate() | |||
Patrick Mezard
|
r16551 | |||
Martin von Zweigbergk
|
r37189 | def filectx(self, path, changeid=None, fileid=None, changectx=None): | ||
Yuya Nishihara
|
r40754 | """changeid must be a changeset revision, if specified. | ||
Augie Fackler
|
r46554 | fileid can be a file revision or node.""" | ||
Augie Fackler
|
r43346 | return context.filectx( | ||
self, path, changeid, fileid, changectx=changectx | ||||
) | ||||
Matt Mackall
|
r2564 | |||
mpm@selenic.com
|
r1089 | def getcwd(self): | ||
return self.dirstate.getcwd() | ||||
Alexis S. L. Carvalho
|
r4525 | def pathto(self, f, cwd=None): | ||
return self.dirstate.pathto(f, cwd) | ||||
Nicolas Dumazet
|
r11698 | def _loadfilter(self, filter): | ||
Gregory Szorc
|
r37155 | if filter not in self._filterpats: | ||
mpm@selenic.com
|
r1258 | l = [] | ||
Matt Mackall
|
r4004 | for pat, cmd in self.ui.configitems(filter): | ||
Augie Fackler
|
r43347 | if cmd == b'!': | ||
Mads Kiilerich
|
r7226 | continue | ||
Augie Fackler
|
r43347 | mf = matchmod.match(self.root, b'', [pat]) | ||
Patrick Mezard
|
r5966 | fn = None | ||
Jesse Glick
|
r6066 | params = cmd | ||
Gregory Szorc
|
r43376 | for name, filterfn in pycompat.iteritems(self._datafilters): | ||
Thomas Arendsen Hein
|
r6210 | if cmd.startswith(name): | ||
Patrick Mezard
|
r5966 | fn = filterfn | ||
Augie Fackler
|
r43346 | params = cmd[len(name) :].lstrip() | ||
Patrick Mezard
|
r5966 | break | ||
if not fn: | ||||
Yuya Nishihara
|
r37138 | fn = lambda s, c, **kwargs: procutil.filter(s, c) | ||
Mads Kiilerich
|
r43472 | fn.__name__ = 'commandfilter' | ||
Jesse Glick
|
r5967 | # Wrap old filters not supporting keyword arguments | ||
Augie Fackler
|
r36196 | if not pycompat.getargspec(fn)[2]: | ||
Jesse Glick
|
r5967 | oldfn = fn | ||
Mads Kiilerich
|
r43473 | fn = lambda s, c, oldfn=oldfn, **kwargs: oldfn(s, c) | ||
Mads Kiilerich
|
r43472 | fn.__name__ = 'compat-' + oldfn.__name__ | ||
Jesse Glick
|
r6066 | l.append((mf, fn, params)) | ||
Gregory Szorc
|
r37155 | self._filterpats[filter] = l | ||
return self._filterpats[filter] | ||||
mpm@selenic.com
|
r1258 | |||
Nicolas Dumazet
|
r12707 | def _filter(self, filterpats, filename, data): | ||
for mf, fn, cmd in filterpats: | ||||
mpm@selenic.com
|
r1258 | if mf(filename): | ||
Mads Kiilerich
|
r43472 | self.ui.debug( | ||
b"filtering %s through %s\n" | ||||
% (filename, cmd or pycompat.sysbytes(fn.__name__)) | ||||
) | ||||
Jesse Glick
|
r5967 | data = fn(data, cmd, ui=self.ui, repo=self, filename=filename) | ||
mpm@selenic.com
|
r1258 | break | ||
return data | ||||
mpm@selenic.com
|
r1089 | |||
Pierre-Yves David
|
r18013 | @unfilteredpropertycache | ||
Nicolas Dumazet
|
r12708 | def _encodefilterpats(self): | ||
Augie Fackler
|
r43347 | return self._loadfilter(b'encode') | ||
Nicolas Dumazet
|
r12708 | |||
Pierre-Yves David
|
r18013 | @unfilteredpropertycache | ||
Nicolas Dumazet
|
r12708 | def _decodefilterpats(self): | ||
Augie Fackler
|
r43347 | return self._loadfilter(b'decode') | ||
Nicolas Dumazet
|
r12708 | |||
Patrick Mezard
|
r5966 | def adddatafilter(self, name, filter): | ||
self._datafilters[name] = filter | ||||
Matt Mackall
|
r4004 | def wread(self, filename): | ||
Pierre-Yves David
|
r31428 | if self.wvfs.islink(filename): | ||
FUJIWARA Katsunori
|
r18950 | data = self.wvfs.readlink(filename) | ||
Matt Mackall
|
r4004 | else: | ||
Angel Ezquerra
|
r23854 | data = self.wvfs.read(filename) | ||
Nicolas Dumazet
|
r12708 | return self._filter(self._encodefilterpats, filename, data) | ||
mpm@selenic.com
|
r1258 | |||
Boris Feld
|
r35743 | def wwrite(self, filename, data, flags, backgroundclose=False, **kwargs): | ||
FUJIWARA Katsunori
|
r24843 | """write ``data`` into ``filename`` in the working directory | ||
This returns length of written (maybe decoded) data. | ||||
""" | ||||
Nicolas Dumazet
|
r12708 | data = self._filter(self._decodefilterpats, filename, data) | ||
Augie Fackler
|
r43347 | if b'l' in flags: | ||
Angel Ezquerra
|
r23854 | self.wvfs.symlink(data, filename) | ||
Matt Mackall
|
r6877 | else: | ||
Augie Fackler
|
r43346 | self.wvfs.write( | ||
filename, data, backgroundclose=backgroundclose, **kwargs | ||||
) | ||||
Augie Fackler
|
r43347 | if b'x' in flags: | ||
FUJIWARA Katsunori
|
r18951 | self.wvfs.setflags(filename, False, True) | ||
Boris Feld
|
r35744 | else: | ||
self.wvfs.setflags(filename, False, False) | ||||
FUJIWARA Katsunori
|
r24843 | return len(data) | ||
mpm@selenic.com
|
r1258 | |||
Matt Mackall
|
r4005 | def wwritedata(self, filename, data): | ||
Nicolas Dumazet
|
r12708 | return self._filter(self._decodefilterpats, filename, data) | ||
mpm@selenic.com
|
r1089 | |||
Pierre-Yves David
|
r23379 | def currenttransaction(self): | ||
"""return the current transaction or None if non exists""" | ||||
Jordi Gutiérrez Hermoso
|
r24306 | if self._transref: | ||
tr = self._transref() | ||||
else: | ||||
tr = None | ||||
Henrik Stuart
|
r8072 | if tr and tr.running(): | ||
Pierre-Yves David
|
r23379 | return tr | ||
return None | ||||
def transaction(self, desc, report=None): | ||||
Augie Fackler
|
r43347 | if self.ui.configbool(b'devel', b'all-warnings') or self.ui.configbool( | ||
b'devel', b'check-locks' | ||||
Augie Fackler
|
r43346 | ): | ||
Pierre-Yves David
|
r29705 | if self._currentlock(self._lockref) is None: | ||
Augie Fackler
|
r43347 | raise error.ProgrammingError(b'transaction requires locking') | ||
Pierre-Yves David
|
r23379 | tr = self.currenttransaction() | ||
if tr is not None: | ||||
Martin von Zweigbergk
|
r36837 | return tr.nest(name=desc) | ||
mason@suse.com
|
r1806 | |||
Matt Mackall
|
r5865 | # abort here if the journal already exists | ||
Augie Fackler
|
r43347 | if self.svfs.exists(b"journal"): | ||
Matt Mackall
|
r10282 | raise error.RepoError( | ||
Augie Fackler
|
r43347 | _(b"abandoned transaction found"), | ||
hint=_(b"run 'hg recover' to clean up transaction"), | ||||
Augie Fackler
|
r43346 | ) | ||
Matt Mackall
|
r5865 | |||
Augie Fackler
|
r43347 | idbase = b"%.40f#%f" % (random.random(), time.time()) | ||
Augie Fackler
|
r44517 | ha = hex(hashutil.sha1(idbase).digest()) | ||
Augie Fackler
|
r43347 | txnid = b'TXN:' + ha | ||
self.hook(b'pretxnopen', throw=True, txnname=desc, txnid=txnid) | ||||
Pierre-Yves David
|
r24281 | |||
Idan Kamara
|
r16236 | self._writejournal(desc) | ||
FUJIWARA Katsunori
|
r18952 | renames = [(vfs, x, undoname(x)) for vfs, x in self._journalfiles()] | ||
Jordi Gutiérrez Hermoso
|
r24306 | if report: | ||
rp = report | ||||
else: | ||||
rp = self.ui.warn | ||||
Augie Fackler
|
r43347 | vfsmap = {b'plain': self.vfs, b'store': self.svfs} # root of .hg/ | ||
Pierre-Yves David
|
r24284 | # we must avoid cyclic reference between repo and transaction. | ||
reporef = weakref.ref(self) | ||||
Pierre-Yves David
|
r31994 | # Code to track tag movement | ||
# | ||||
# Since tags are all handled as file content, it is actually quite hard | ||||
# to track these movement from a code perspective. So we fallback to a | ||||
# tracking at the repository level. One could envision to track changes | ||||
# to the '.hgtags' file through changegroup apply but that fails to | ||||
# cope with case where transaction expose new heads without changegroup | ||||
# being involved (eg: phase movement). | ||||
# | ||||
# For now, We gate the feature behind a flag since this likely comes | ||||
# with performance impacts. The current code run more often than needed | ||||
# and do not use caches as much as it could. The current focus is on | ||||
# the behavior of the feature so we disable it by default. The flag | ||||
# will be removed when we are happy with the performance impact. | ||||
Pierre-Yves David
|
r31996 | # | ||
# Once this feature is no longer experimental move the following | ||||
# documentation to the appropriate help section: | ||||
# | ||||
# The ``HG_TAG_MOVED`` variable will be set if the transaction touched | ||||
# tags (new or changed or deleted tags). In addition the details of | ||||
# these changes are made available in a file at: | ||||
# ``REPOROOT/.hg/changes/tags.changes``. | ||||
# Make sure you check for HG_TAG_MOVED before reading that file as it | ||||
# might exist from a previous transaction even if no tag were touched | ||||
# in this one. Changes are recorded in a line base format:: | ||||
# | ||||
# <action> <hex-node> <tag-name>\n | ||||
# | ||||
# Actions are defined as follow: | ||||
# "-R": tag is removed, | ||||
# "+A": tag is added, | ||||
# "-M": tag is moved (old value), | ||||
# "+M": tag is moved (new value), | ||||
Pierre-Yves David
|
r31994 | tracktags = lambda x: None | ||
# experimental config: experimental.hook-track-tags | ||||
Augie Fackler
|
r43347 | shouldtracktags = self.ui.configbool( | ||
b'experimental', b'hook-track-tags' | ||||
) | ||||
if desc != b'strip' and shouldtracktags: | ||||
Pierre-Yves David
|
r31994 | oldheads = self.changelog.headrevs() | ||
Augie Fackler
|
r43346 | |||
Pierre-Yves David
|
r31994 | def tracktags(tr2): | ||
repo = reporef() | ||||
Matt Harbison
|
r47550 | assert repo is not None # help pytype | ||
Pierre-Yves David
|
r31994 | oldfnodes = tagsmod.fnoderevs(repo.ui, repo, oldheads) | ||
newheads = repo.changelog.headrevs() | ||||
newfnodes = tagsmod.fnoderevs(repo.ui, repo, newheads) | ||||
# notes: we compare lists here. | ||||
# As we do it only once buiding set would not be cheaper | ||||
Pierre-Yves David
|
r31995 | changes = tagsmod.difftags(repo.ui, repo, oldfnodes, newfnodes) | ||
if changes: | ||||
Augie Fackler
|
r43347 | tr2.hookargs[b'tag_moved'] = b'1' | ||
Augie Fackler
|
r43346 | with repo.vfs( | ||
Augie Fackler
|
r43347 | b'changes/tags.changes', b'w', atomictemp=True | ||
Augie Fackler
|
r43346 | ) as changesfile: | ||
Pierre-Yves David
|
r31996 | # note: we do not register the file to the transaction | ||
# because we needs it to still exist on the transaction | ||||
# is close (for txnclose hooks) | ||||
tagsmod.writediff(changesfile, changes) | ||||
Augie Fackler
|
r43346 | |||
Pierre-Yves David
|
r31994 | def validate(tr2): | ||
Pierre-Yves David
|
r24284 | """will run pre-closing hooks""" | ||
Pierre-Yves David
|
r31994 | # XXX the transaction API is a bit lacking here so we take a hacky | ||
# path for now | ||||
# | ||||
# We cannot add this as a "pending" hooks since the 'tr.hookargs' | ||||
# dict is copied before these run. In addition we needs the data | ||||
# available to in memory hooks too. | ||||
# | ||||
# Moreover, we also need to make sure this runs before txnclose | ||||
# hooks and there is no "pending" mechanism that would execute | ||||
# logic only if hooks are about to run. | ||||
# | ||||
# Fixing this limitation of the transaction is also needed to track | ||||
# other families of changes (bookmarks, phases, obsolescence). | ||||
# | ||||
# This will have to be fixed before we remove the experimental | ||||
# gating. | ||||
tracktags(tr2) | ||||
Boris Feld
|
r34710 | repo = reporef() | ||
Matt Harbison
|
r47550 | assert repo is not None # help pytype | ||
r43239 | ||||
Georges Racinet
|
r44133 | singleheadopt = (b'experimental', b'single-head-per-branch') | ||
singlehead = repo.ui.configbool(*singleheadopt) | ||||
r43239 | if singlehead: | |||
Georges Racinet
|
r44133 | singleheadsub = repo.ui.configsuboptions(*singleheadopt)[1] | ||
Augie Fackler
|
r43347 | accountclosed = singleheadsub.get( | ||
b"account-closed-heads", False | ||||
) | ||||
Joerg Sonnenberger
|
r46712 | if singleheadsub.get(b"public-changes-only", False): | ||
filtername = b"immutable" | ||||
else: | ||||
filtername = b"visible" | ||||
scmutil.enforcesinglehead( | ||||
repo, tr2, desc, accountclosed, filtername | ||||
) | ||||
Augie Fackler
|
r43347 | if hook.hashook(repo.ui, b'pretxnclose-bookmark'): | ||
for name, (old, new) in sorted( | ||||
tr.changes[b'bookmarks'].items() | ||||
): | ||||
Boris Feld
|
r34710 | args = tr.hookargs.copy() | ||
args.update(bookmarks.preparehookargs(name, old, new)) | ||||
Augie Fackler
|
r43346 | repo.hook( | ||
Augie Fackler
|
r43347 | b'pretxnclose-bookmark', | ||
Augie Fackler
|
r43346 | throw=True, | ||
**pycompat.strkwargs(args) | ||||
) | ||||
Augie Fackler
|
r43347 | if hook.hashook(repo.ui, b'pretxnclose-phase'): | ||
Boris Feld
|
r34712 | cl = repo.unfiltered().changelog | ||
Joerg Sonnenberger
|
r45036 | for revs, (old, new) in tr.changes[b'phases']: | ||
for rev in revs: | ||||
args = tr.hookargs.copy() | ||||
node = hex(cl.node(rev)) | ||||
args.update(phases.preparehookargs(node, old, new)) | ||||
repo.hook( | ||||
b'pretxnclose-phase', | ||||
throw=True, | ||||
**pycompat.strkwargs(args) | ||||
) | ||||
Augie Fackler
|
r43346 | |||
repo.hook( | ||||
Augie Fackler
|
r43347 | b'pretxnclose', throw=True, **pycompat.strkwargs(tr.hookargs) | ||
Augie Fackler
|
r43346 | ) | ||
FUJIWARA Katsunori
|
r26577 | def releasefn(tr, success): | ||
repo = reporef() | ||||
Martin von Zweigbergk
|
r42894 | if repo is None: | ||
# If the repo has been GC'd (and this release function is being | ||||
# called from transaction.__del__), there's not much we can do, | ||||
# so just leave the unfinished transaction there and let the | ||||
# user run `hg recover`. | ||||
return | ||||
FUJIWARA Katsunori
|
r26577 | if success: | ||
FUJIWARA Katsunori
|
r26634 | # this should be explicitly invoked here, because | ||
# in-memory changes aren't written out at closing | ||||
# transaction, if tr.addfilegenerator (via | ||||
# dirstate.write or so) isn't invoked while | ||||
# transaction running | ||||
FUJIWARA Katsunori
|
r26748 | repo.dirstate.write(None) | ||
FUJIWARA Katsunori
|
r26577 | else: | ||
# discard all changes (including ones already written | ||||
# out) in this transaction | ||||
Augie Fackler
|
r43347 | narrowspec.restorebackup(self, b'journal.narrowspec') | ||
narrowspec.restorewcbackup(self, b'journal.narrowspec.dirstate') | ||||
repo.dirstate.restorebackup(None, b'journal.dirstate') | ||||
Pierre-Yves David
|
r24284 | |||
FUJIWARA Katsunori
|
r26831 | repo.invalidate(clearfilecache=True) | ||
Augie Fackler
|
r43346 | tr = transaction.transaction( | ||
rp, | ||||
self.svfs, | ||||
vfsmap, | ||||
Augie Fackler
|
r43347 | b"journal", | ||
b"undo", | ||||
Augie Fackler
|
r43346 | aftertrans(renames), | ||
self.store.createmode, | ||||
validator=validate, | ||||
releasefn=releasefn, | ||||
checkambigfiles=_cachedfiles, | ||||
name=desc, | ||||
) | ||||
Augie Fackler
|
r43347 | tr.changes[b'origrepolen'] = len(self) | ||
tr.changes[b'obsmarkers'] = set() | ||||
Joerg Sonnenberger
|
r45036 | tr.changes[b'phases'] = [] | ||
Augie Fackler
|
r43347 | tr.changes[b'bookmarks'] = {} | ||
tr.hookargs[b'txnid'] = txnid | ||||
tr.hookargs[b'txnname'] = desc | ||||
Joerg Sonnenberger
|
r45350 | tr.hookargs[b'changes'] = tr.changes | ||
Pierre-Yves David
|
r23511 | # note: writing the fncache only during finalize mean that the file is | ||
# outdated when running hooks. As fncache is used for streaming clone, | ||||
# this is not expected to break anything that happen during the hooks. | ||||
Augie Fackler
|
r43347 | tr.addfinalize(b'flush-fncache', self.store.write) | ||
Augie Fackler
|
r43346 | |||
Pierre-Yves David
|
r24282 | def txnclosehook(tr2): | ||
Augie Fackler
|
r46554 | """To be run if transaction is successful, will schedule a hook run""" | ||
Gregory Szorc
|
r27907 | # Don't reference tr2 in hook() so we don't hold a reference. | ||
# This reduces memory consumption when there are multiple | ||||
# transactions per lock. This can likely go away if issue5045 | ||||
# fixes the function accumulation. | ||||
hookargs = tr2.hookargs | ||||
Kyle Lippincott
|
r44217 | def hookfunc(unused_success): | ||
Boris Feld
|
r34709 | repo = reporef() | ||
Matt Harbison
|
r47550 | assert repo is not None # help pytype | ||
Augie Fackler
|
r43347 | if hook.hashook(repo.ui, b'txnclose-bookmark'): | ||
bmchanges = sorted(tr.changes[b'bookmarks'].items()) | ||||
Boris Feld
|
r34709 | for name, (old, new) in bmchanges: | ||
args = tr.hookargs.copy() | ||||
args.update(bookmarks.preparehookargs(name, old, new)) | ||||
Augie Fackler
|
r43346 | repo.hook( | ||
Augie Fackler
|
r43347 | b'txnclose-bookmark', | ||
Augie Fackler
|
r43346 | throw=False, | ||
**pycompat.strkwargs(args) | ||||
) | ||||
Boris Feld
|
r34709 | |||
Augie Fackler
|
r43347 | if hook.hashook(repo.ui, b'txnclose-phase'): | ||
Boris Feld
|
r34711 | cl = repo.unfiltered().changelog | ||
Joerg Sonnenberger
|
r45036 | phasemv = sorted( | ||
tr.changes[b'phases'], key=lambda r: r[0][0] | ||||
) | ||||
for revs, (old, new) in phasemv: | ||||
for rev in revs: | ||||
args = tr.hookargs.copy() | ||||
node = hex(cl.node(rev)) | ||||
args.update(phases.preparehookargs(node, old, new)) | ||||
repo.hook( | ||||
b'txnclose-phase', | ||||
throw=False, | ||||
**pycompat.strkwargs(args) | ||||
) | ||||
Augie Fackler
|
r43346 | |||
repo.hook( | ||||
Augie Fackler
|
r43347 | b'txnclose', throw=False, **pycompat.strkwargs(hookargs) | ||
Augie Fackler
|
r43346 | ) | ||
Matt Harbison
|
r47550 | repo = reporef() | ||
assert repo is not None # help pytype | ||||
repo._afterlock(hookfunc) | ||||
Augie Fackler
|
r43346 | |||
Augie Fackler
|
r43347 | tr.addfinalize(b'txnclose-hook', txnclosehook) | ||
Martin von Zweigbergk
|
r35767 | # Include a leading "-" to make it happen before the transaction summary | ||
# reports registered via scmutil.registersummarycallback() whose names | ||||
# are 00-txnreport etc. That way, the caches will be warm when the | ||||
# callbacks run. | ||||
Augie Fackler
|
r43347 | tr.addpostclose(b'-warm-cache', self._buildcacheupdater(tr)) | ||
Augie Fackler
|
r43346 | |||
Pierre-Yves David
|
r24792 | def txnaborthook(tr2): | ||
Augie Fackler
|
r46554 | """To be run if transaction is aborted""" | ||
Matt Harbison
|
r47550 | repo = reporef() | ||
assert repo is not None # help pytype | ||||
repo.hook( | ||||
Augie Fackler
|
r43347 | b'txnabort', throw=False, **pycompat.strkwargs(tr2.hookargs) | ||
Augie Fackler
|
r43346 | ) | ||
Augie Fackler
|
r43347 | tr.addabort(b'txnabort-hook', txnaborthook) | ||
Yuya Nishihara
|
r26251 | # avoid eager cache invalidation. in-memory data should be identical | ||
# to stored data if transaction has no error. | ||||
Augie Fackler
|
r43347 | tr.addpostclose(b'refresh-filecachestats', self._refreshfilecachestats) | ||
Alexander Solovyov
|
r14266 | self._transref = weakref.ref(tr) | ||
Boris Feld
|
r33541 | scmutil.registersummarycallback(self, tr, desc) | ||
Alexander Solovyov
|
r14266 | return tr | ||
Idan Kamara
|
r16236 | def _journalfiles(self): | ||
Augie Fackler
|
r43346 | return ( | ||
Augie Fackler
|
r43347 | (self.svfs, b'journal'), | ||
(self.svfs, b'journal.narrowspec'), | ||||
(self.vfs, b'journal.narrowspec.dirstate'), | ||||
(self.vfs, b'journal.dirstate'), | ||||
(self.vfs, b'journal.branch'), | ||||
(self.vfs, b'journal.desc'), | ||||
(bookmarks.bookmarksvfs(self), b'journal.bookmarks'), | ||||
(self.svfs, b'journal.phaseroots'), | ||||
Augie Fackler
|
r43346 | ) | ||
Idan Kamara
|
r16236 | |||
def undofiles(self): | ||||
FUJIWARA Katsunori
|
r20975 | return [(vfs, undoname(x)) for vfs, x in self._journalfiles()] | ||
Idan Kamara
|
r16236 | |||
r32452 | @unfilteredmethod | |||
Alexander Solovyov
|
r14266 | def _writejournal(self, desc): | ||
Augie Fackler
|
r43347 | self.dirstate.savebackup(None, b'journal.dirstate') | ||
narrowspec.savewcbackup(self, b'journal.narrowspec.dirstate') | ||||
narrowspec.savebackup(self, b'journal.narrowspec') | ||||
Augie Fackler
|
r43346 | self.vfs.write( | ||
Augie Fackler
|
r43347 | b"journal.branch", encoding.fromlocal(self.dirstate.branch()) | ||
Augie Fackler
|
r43346 | ) | ||
Augie Fackler
|
r43347 | self.vfs.write(b"journal.desc", b"%d\n%s\n" % (len(self), desc)) | ||
Martin von Zweigbergk
|
r42512 | bookmarksvfs = bookmarks.bookmarksvfs(self) | ||
Augie Fackler
|
r43346 | bookmarksvfs.write( | ||
Augie Fackler
|
r43347 | b"journal.bookmarks", bookmarksvfs.tryread(b"bookmarks") | ||
Augie Fackler
|
r43346 | ) | ||
Augie Fackler
|
r43347 | self.svfs.write(b"journal.phaseroots", self.svfs.tryread(b"phaseroots")) | ||
Alexander Solovyov
|
r14266 | |||
mpm@selenic.com
|
r1089 | def recover(self): | ||
Bryan O'Sullivan
|
r27846 | with self.lock(): | ||
Augie Fackler
|
r43347 | if self.svfs.exists(b"journal"): | ||
self.ui.status(_(b"rolling back interrupted transaction\n")) | ||||
Augie Fackler
|
r43346 | vfsmap = { | ||
Augie Fackler
|
r43347 | b'': self.svfs, | ||
b'plain': self.vfs, | ||||
Augie Fackler
|
r43346 | } | ||
transaction.rollback( | ||||
self.svfs, | ||||
vfsmap, | ||||
Augie Fackler
|
r43347 | b"journal", | ||
Augie Fackler
|
r43346 | self.ui.warn, | ||
checkambigfiles=_cachedfiles, | ||||
) | ||||
Matt Mackall
|
r4915 | self.invalidate() | ||
return True | ||||
else: | ||||
Augie Fackler
|
r43347 | self.ui.warn(_(b"no interrupted transaction available\n")) | ||
Matt Mackall
|
r4915 | return False | ||
mpm@selenic.com
|
r1089 | |||
Greg Ward
|
r15183 | def rollback(self, dryrun=False, force=False): | ||
FUJIWARA Katsunori
|
r26631 | wlock = lock = dsguard = None | ||
Matt Mackall
|
r4915 | try: | ||
mason@suse.com
|
r1712 | wlock = self.wlock() | ||
Eric Hopper
|
r4438 | lock = self.lock() | ||
Augie Fackler
|
r43347 | if self.svfs.exists(b"undo"): | ||
dsguard = dirstateguard.dirstateguard(self, b'rollback') | ||||
FUJIWARA Katsunori
|
r26631 | |||
return self._rollback(dryrun, force, dsguard) | ||||
Matt Mackall
|
r4915 | else: | ||
Augie Fackler
|
r43347 | self.ui.warn(_(b"no rollback information available\n")) | ||
Matt Mackall
|
r11177 | return 1 | ||
Matt Mackall
|
r4915 | finally: | ||
FUJIWARA Katsunori
|
r26631 | release(dsguard, lock, wlock) | ||
mpm@selenic.com
|
r1089 | |||
Augie Fackler
|
r43346 | @unfilteredmethod # Until we get smarter cache management | ||
FUJIWARA Katsunori
|
r26631 | def _rollback(self, dryrun, force, dsguard): | ||
Greg Ward
|
r15130 | ui = self.ui | ||
Greg Ward
|
r15097 | try: | ||
Augie Fackler
|
r43347 | args = self.vfs.read(b'undo.desc').splitlines() | ||
Greg Ward
|
r15130 | (oldlen, desc, detail) = (int(args[0]), args[1], None) | ||
if len(args) >= 3: | ||||
detail = args[2] | ||||
oldtip = oldlen - 1 | ||||
if detail and ui.verbose: | ||||
Augie Fackler
|
r43346 | msg = _( | ||
Augie Fackler
|
r43347 | b'repository tip rolled back to revision %d' | ||
b' (undo %s: %s)\n' | ||||
Augie Fackler
|
r43346 | ) % (oldtip, desc, detail) | ||
Greg Ward
|
r15130 | else: | ||
Augie Fackler
|
r43346 | msg = _( | ||
Martin von Zweigbergk
|
r43387 | b'repository tip rolled back to revision %d (undo %s)\n' | ||
Augie Fackler
|
r43346 | ) % (oldtip, desc) | ||
Greg Ward
|
r15097 | except IOError: | ||
Augie Fackler
|
r43347 | msg = _(b'rolling back unknown transaction\n') | ||
Greg Ward
|
r15183 | desc = None | ||
Augie Fackler
|
r43347 | if not force and self[b'.'] != self[b'tip'] and desc == b'commit': | ||
Pierre-Yves David
|
r26587 | raise error.Abort( | ||
Augie Fackler
|
r43346 | _( | ||
Augie Fackler
|
r43347 | b'rollback of last commit while not checked out ' | ||
b'may lose data' | ||||
Augie Fackler
|
r43346 | ), | ||
Augie Fackler
|
r43347 | hint=_(b'use -f to force'), | ||
Augie Fackler
|
r43346 | ) | ||
Greg Ward
|
r15183 | |||
Greg Ward
|
r15130 | ui.status(msg) | ||
Greg Ward
|
r15097 | if dryrun: | ||
return 0 | ||||
Greg Ward
|
r15131 | |||
parents = self.dirstate.parents() | ||||
Idan Kamara
|
r18310 | self.destroying() | ||
Augie Fackler
|
r43347 | vfsmap = {b'plain': self.vfs, b'': self.svfs} | ||
Augie Fackler
|
r43346 | transaction.rollback( | ||
Augie Fackler
|
r43347 | self.svfs, vfsmap, b'undo', ui.warn, checkambigfiles=_cachedfiles | ||
Augie Fackler
|
r43346 | ) | ||
Martin von Zweigbergk
|
r42512 | bookmarksvfs = bookmarks.bookmarksvfs(self) | ||
Augie Fackler
|
r43347 | if bookmarksvfs.exists(b'undo.bookmarks'): | ||
bookmarksvfs.rename( | ||||
b'undo.bookmarks', b'bookmarks', checkambig=True | ||||
) | ||||
if self.svfs.exists(b'undo.phaseroots'): | ||||
self.svfs.rename(b'undo.phaseroots', b'phaseroots', checkambig=True) | ||||
Greg Ward
|
r15097 | self.invalidate() | ||
Greg Ward
|
r15131 | |||
r43937 | has_node = self.changelog.index.has_node | |||
parentgone = any(not has_node(p) for p in parents) | ||||
Greg Ward
|
r15131 | if parentgone: | ||
FUJIWARA Katsunori
|
r26631 | # prevent dirstateguard from overwriting already restored one | ||
dsguard.close() | ||||
Augie Fackler
|
r43347 | narrowspec.restorebackup(self, b'undo.narrowspec') | ||
narrowspec.restorewcbackup(self, b'undo.narrowspec.dirstate') | ||||
self.dirstate.restorebackup(None, b'undo.dirstate') | ||||
Greg Ward
|
r15131 | try: | ||
Augie Fackler
|
r43347 | branch = self.vfs.read(b'undo.branch') | ||
Sune Foldager
|
r17360 | self.dirstate.setbranch(encoding.tolocal(branch)) | ||
Greg Ward
|
r15131 | except IOError: | ||
Augie Fackler
|
r43346 | ui.warn( | ||
_( | ||||
Augie Fackler
|
r43347 | b'named branch could not be reset: ' | ||
b'current branch is still \'%s\'\n' | ||||
Augie Fackler
|
r43346 | ) | ||
% self.dirstate.branch() | ||||
) | ||||
Greg Ward
|
r15131 | |||
Augie Fackler
|
r27167 | parents = tuple([p.rev() for p in self[None].parents()]) | ||
Greg Ward
|
r15131 | if len(parents) > 1: | ||
Augie Fackler
|
r43346 | ui.status( | ||
Augie Fackler
|
r43347 | _( | ||
b'working directory now based on ' | ||||
b'revisions %d and %d\n' | ||||
) | ||||
Augie Fackler
|
r43346 | % parents | ||
) | ||||
Greg Ward
|
r15131 | else: | ||
Augie Fackler
|
r43346 | ui.status( | ||
Martin von Zweigbergk
|
r43387 | _(b'working directory now based on revision %d\n') % parents | ||
Augie Fackler
|
r43346 | ) | ||
Martin von Zweigbergk
|
r46062 | mergestatemod.mergestate.clean(self) | ||
Matt Mackall
|
r24784 | |||
Joshua Redstone
|
r17013 | # TODO: if we know which new heads may result from this rollback, pass | ||
# them to destroy(), which will prevent the branchhead cache from being | ||||
# invalidated. | ||||
Greg Ward
|
r15604 | self.destroyed() | ||
Greg Ward
|
r15097 | return 0 | ||
r32332 | def _buildcacheupdater(self, newtransaction): | |||
"""called during transaction to build the callback updating cache | ||||
Lives on the repository to help extension who might want to augment | ||||
this logic. For this purpose, the created transaction is passed to the | ||||
method. | ||||
""" | ||||
# we must avoid cyclic reference between repo and transaction. | ||||
reporef = weakref.ref(self) | ||||
Augie Fackler
|
r43346 | |||
r32332 | def updater(tr): | |||
repo = reporef() | ||||
Matt Harbison
|
r47550 | assert repo is not None # help pytype | ||
r32332 | repo.updatecaches(tr) | |||
Augie Fackler
|
r43346 | |||
r32332 | return updater | |||
Pierre-Yves David
|
r32263 | @unfilteredmethod | ||
Boris Feld
|
r36970 | def updatecaches(self, tr=None, full=False): | ||
Pierre-Yves David
|
r32264 | """warm appropriate caches | ||
If this function is called after a transaction closed. The transaction | ||||
will be available in the 'tr' argument. This can be used to selectively | ||||
update caches relevant to the changes in that transaction. | ||||
Boris Feld
|
r36970 | |||
If 'full' is set, make sure all caches the function knows about have | ||||
up-to-date data. Even the ones usually loaded more lazily. | ||||
r47985 | ||||
The `full` argument can take a special "post-clone" value. In this case | ||||
the cache warming is made after a clone and of the slower cache might | ||||
be skipped, namely the `.fnodetags` one. This argument is 5.8 specific | ||||
as we plan for a cleaner way to deal with this for 5.9. | ||||
Pierre-Yves David
|
r32264 | """ | ||
Augie Fackler
|
r43347 | if tr is not None and tr.hookargs.get(b'source') == b'strip': | ||
Pierre-Yves David
|
r32263 | # During strip, many caches are invalid but | ||
# later call to `destroyed` will refresh them. | ||||
return | ||||
Augie Fackler
|
r43347 | if tr is None or tr.changes[b'origrepolen'] < len(self): | ||
Joerg Sonnenberger
|
r46889 | # accessing the 'served' branchmap should refresh all the others, | ||
Augie Fackler
|
r43347 | self.ui.debug(b'updating the branch cache\n') | ||
self.filtered(b'served').branchmap() | ||||
self.filtered(b'served.hidden').branchmap() | ||||
Pierre-Yves David
|
r32263 | |||
Boris Feld
|
r36970 | if full: | ||
r42099 | unfi = self.unfiltered() | |||
r44932 | ||||
self.changelog.update_caches(transaction=tr) | ||||
r45291 | self.manifestlog.update_caches(transaction=tr) | |||
r44932 | ||||
r42099 | rbc = unfi.revbranchcache() | |||
for r in unfi.changelog: | ||||
Boris Feld
|
r36970 | rbc.branchinfo(r) | ||
rbc.write() | ||||
Martijn Pieters
|
r38803 | # ensure the working copy parents are in the manifestfulltextcache | ||
Augie Fackler
|
r43347 | for ctx in self[b'.'].parents(): | ||
Martijn Pieters
|
r38803 | ctx.manifest() # accessing the manifest is enough | ||
r47985 | if not full == b"post-clone": | |||
# accessing fnode cache warms the cache | ||||
tagsmod.fnoderevs(self.ui, unfi, unfi.changelog.revs()) | ||||
r42100 | # accessing tags warm the cache | |||
self.tags() | ||||
Augie Fackler
|
r43347 | self.filtered(b'served').tags() | ||
r42100 | ||||
Kyle Lippincott
|
r42940 | # The `full` arg is documented as updating even the lazily-loaded | ||
# caches immediately, so we're forcing a write to cause these caches | ||||
# to be warmed up even if they haven't explicitly been requested | ||||
# yet (if they've never been used by hg, they won't ever have been | ||||
# written, even if they're a subset of another kind of cache that | ||||
# *has* been used). | ||||
for filt in repoview.filtertable.keys(): | ||||
filtered = self.filtered(filt) | ||||
filtered.branchmap().write(filtered) | ||||
Benoit Boissinot
|
r10547 | def invalidatecaches(self): | ||
Idan Kamara
|
r15988 | |||
Augie Fackler
|
r43906 | if '_tagscache' in vars(self): | ||
Pierre-Yves David
|
r18013 | # can't use delattr on proxy | ||
Augie Fackler
|
r43906 | del self.__dict__['_tagscache'] | ||
Idan Kamara
|
r14936 | |||
Martijn Pieters
|
r41764 | self._branchcaches.clear() | ||
Pierre-Yves David
|
r18105 | self.invalidatevolatilesets() | ||
Gregory Szorc
|
r33302 | self._sparsesignaturecache.clear() | ||
Pierre-Yves David
|
r18105 | |||
def invalidatevolatilesets(self): | ||||
self.filteredrevcache.clear() | ||||
Pierre-Yves David
|
r17469 | obsolete.clearobscaches(self) | ||
r44563 | self._quick_access_changeid_invalidate() | |||
Benoit Boissinot
|
r1784 | |||
Idan Kamara
|
r14930 | def invalidatedirstate(self): | ||
Augie Fackler
|
r46554 | """Invalidates the dirstate, causing the next call to dirstate | ||
Idan Kamara
|
r14930 | to check if it was modified since the last time it was read, | ||
rereading it if it has. | ||||
This is different to dirstate.invalidate() that it doesn't always | ||||
rereads the dirstate. Use dirstate.invalidate() if you want to | ||||
explicitly read the dirstate again (i.e. restoring it to a previous | ||||
Augie Fackler
|
r46554 | known good state).""" | ||
Augie Fackler
|
r43906 | if hasunfilteredcache(self, 'dirstate'): | ||
Idan Kamara
|
r16200 | for k in self.dirstate._filecache: | ||
try: | ||||
delattr(self.dirstate, k) | ||||
except AttributeError: | ||||
pass | ||||
Augie Fackler
|
r43906 | delattr(self.unfiltered(), 'dirstate') | ||
Idan Kamara
|
r14930 | |||
FUJIWARA Katsunori
|
r26831 | def invalidate(self, clearfilecache=False): | ||
Augie Fackler
|
r46554 | """Invalidates both store and non-store parts other than dirstate | ||
FUJIWARA Katsunori
|
r29918 | |||
If a transaction is running, invalidation of store is omitted, | ||||
because discarding in-memory changes might cause inconsistency | ||||
(e.g. incomplete fncache causes unintentional failure, but | ||||
redundant one doesn't). | ||||
Augie Fackler
|
r46554 | """ | ||
Augie Fackler
|
r43346 | unfiltered = self.unfiltered() # all file caches are stored unfiltered | ||
Augie Fackler
|
r31510 | for k in list(self._filecache.keys()): | ||
Idan Kamara
|
r14935 | # dirstate is invalidated separately in invalidatedirstate() | ||
Augie Fackler
|
r43347 | if k == b'dirstate': | ||
Idan Kamara
|
r14935 | continue | ||
Augie Fackler
|
r43346 | if ( | ||
Augie Fackler
|
r43347 | k == b'changelog' | ||
Augie Fackler
|
r43346 | and self.currenttransaction() | ||
and self.changelog._delayed | ||||
): | ||||
Martin von Zweigbergk
|
r33672 | # The changelog object may store unwritten revisions. We don't | ||
# want to lose them. | ||||
# TODO: Solve the problem instead of working around it. | ||||
continue | ||||
Idan Kamara
|
r14935 | |||
FUJIWARA Katsunori
|
r26831 | if clearfilecache: | ||
del self._filecache[k] | ||||
Idan Kamara
|
r14935 | try: | ||
Pierre-Yves David
|
r17997 | delattr(unfiltered, k) | ||
Idan Kamara
|
r14935 | except AttributeError: | ||
pass | ||||
Benoit Boissinot
|
r10547 | self.invalidatecaches() | ||
FUJIWARA Katsunori
|
r29918 | if not self.currenttransaction(): | ||
# TODO: Changing contents of store outside transaction | ||||
# causes inconsistency. We should make in-memory store | ||||
# changes detectable, and abort if changed. | ||||
self.store.invalidatecaches() | ||||
Benoit Boissinot
|
r10547 | |||
Yuya Nishihara
|
r20627 | def invalidateall(self): | ||
Augie Fackler
|
r46554 | """Fully invalidates both store and non-store parts, causing the | ||
subsequent operation to reread any outside changes.""" | ||||
Yuya Nishihara
|
r20627 | # extension should hook this to invalidate its caches | ||
self.invalidate() | ||||
self.invalidatedirstate() | ||||
FUJIWARA Katsunori
|
r29920 | @unfilteredmethod | ||
Yuya Nishihara
|
r26251 | def _refreshfilecachestats(self, tr): | ||
Yuya Nishihara
|
r26250 | """Reload stats of cached files so that they are flagged as valid""" | ||
for k, ce in self._filecache.items(): | ||||
Augie Fackler
|
r35857 | k = pycompat.sysstr(k) | ||
Augie Fackler
|
r43906 | if k == 'dirstate' or k not in self.__dict__: | ||
Yuya Nishihara
|
r26250 | continue | ||
ce.refresh() | ||||
Augie Fackler
|
r43346 | def _lock( | ||
Augie Fackler
|
r46554 | self, | ||
vfs, | ||||
lockname, | ||||
wait, | ||||
releasefn, | ||||
acquirefn, | ||||
desc, | ||||
Augie Fackler
|
r43346 | ): | ||
Boris Feld
|
r35209 | timeout = 0 | ||
Boris Feld
|
r35210 | warntimeout = 0 | ||
Boris Feld
|
r35209 | if wait: | ||
Augie Fackler
|
r43347 | timeout = self.ui.configint(b"ui", b"timeout") | ||
warntimeout = self.ui.configint(b"ui", b"timeout.warn") | ||||
Yuya Nishihara
|
r38157 | # internal config: ui.signal-safe-lock | ||
Augie Fackler
|
r43347 | signalsafe = self.ui.configbool(b'ui', b'signal-safe-lock') | ||
Boris Feld
|
r35209 | |||
Augie Fackler
|
r43346 | l = lockmod.trylock( | ||
self.ui, | ||||
vfs, | ||||
lockname, | ||||
timeout, | ||||
warntimeout, | ||||
releasefn=releasefn, | ||||
acquirefn=acquirefn, | ||||
desc=desc, | ||||
signalsafe=signalsafe, | ||||
) | ||||
Benoit Boissinot
|
r1751 | return l | ||
Matt Mackall
|
r15587 | def _afterlock(self, callback): | ||
Pierre-Yves David
|
r24821 | """add a callback to be run when the repository is fully unlocked | ||
Pierre-Yves David
|
r15583 | |||
Pierre-Yves David
|
r24821 | The callback will be executed when the outermost lock is released | ||
(with wlock being higher level than 'lock').""" | ||||
for ref in (self._wlockref, self._lockref): | ||||
l = ref and ref() | ||||
if l and l.held: | ||||
l.postrelease.append(callback) | ||||
break | ||||
Augie Fackler
|
r43346 | else: # no lock have been found. | ||
Kyle Lippincott
|
r44217 | callback(True) | ||
Pierre-Yves David
|
r15583 | |||
Matt Mackall
|
r4914 | def lock(self, wait=True): | ||
Augie Fackler
|
r46554 | """Lock the repository store (.hg/store) and return a weak reference | ||
Greg Ward
|
r9309 | to the lock. Use this before modifying the store (e.g. committing or | ||
Pierre-Yves David
|
r24746 | stripping). If you are opening a transaction, get a lock as well.) | ||
If both 'lock' and 'wlock' must be acquired, ensure you always acquires | ||||
Augie Fackler
|
r46554 | 'wlock' first to avoid a dead-lock hazard.""" | ||
Pierre-Yves David
|
r29705 | l = self._currentlock(self._lockref) | ||
if l is not None: | ||||
Ronny Pfannschmidt
|
r8108 | l.lock() | ||
return l | ||||
Matt Mackall
|
r4917 | |||
Augie Fackler
|
r43346 | l = self._lock( | ||
vfs=self.svfs, | ||||
Augie Fackler
|
r43347 | lockname=b"lock", | ||
Augie Fackler
|
r43346 | wait=wait, | ||
releasefn=None, | ||||
acquirefn=self.invalidate, | ||||
Augie Fackler
|
r43347 | desc=_(b'repository %s') % self.origroot, | ||
Augie Fackler
|
r43346 | ) | ||
Matt Mackall
|
r4917 | self._lockref = weakref.ref(l) | ||
return l | ||||
Benoit Boissinot
|
r1751 | |||
Matt Mackall
|
r4914 | def wlock(self, wait=True): | ||
Augie Fackler
|
r46554 | """Lock the non-store parts of the repository (everything under | ||
Greg Ward
|
r9309 | .hg except .hg/store) and return a weak reference to the lock. | ||
Pierre-Yves David
|
r24746 | |||
Use this before modifying files in .hg. | ||||
If both 'lock' and 'wlock' must be acquired, ensure you always acquires | ||||
Augie Fackler
|
r46554 | 'wlock' first to avoid a dead-lock hazard.""" | ||
Matt Harbison
|
r47551 | l = self._wlockref() if self._wlockref else None | ||
Pierre-Yves David
|
r24744 | if l is not None and l.held: | ||
l.lock() | ||||
return l | ||||
Mads Kiilerich
|
r26781 | # We do not need to check for non-waiting lock acquisition. Such | ||
Pierre-Yves David
|
r24750 | # acquisition would not cause dead-lock as they would just fail. | ||
Augie Fackler
|
r43346 | if wait and ( | ||
Augie Fackler
|
r43347 | self.ui.configbool(b'devel', b'all-warnings') | ||
or self.ui.configbool(b'devel', b'check-locks') | ||||
Augie Fackler
|
r43346 | ): | ||
Pierre-Yves David
|
r29705 | if self._currentlock(self._lockref) is not None: | ||
Augie Fackler
|
r43347 | self.ui.develwarn(b'"wlock" acquired after "lock"') | ||
Benoit Boissinot
|
r1531 | |||
Idan Kamara
|
r14930 | def unlock(): | ||
Durham Goode
|
r22404 | if self.dirstate.pendingparentchange(): | ||
self.dirstate.invalidate() | ||||
else: | ||||
FUJIWARA Katsunori
|
r26748 | self.dirstate.write(None) | ||
Durham Goode
|
r22404 | |||
Augie Fackler
|
r43347 | self._filecache[b'dirstate'].refresh() | ||
Idan Kamara
|
r14930 | |||
Augie Fackler
|
r43346 | l = self._lock( | ||
self.vfs, | ||||
Augie Fackler
|
r43347 | b"wlock", | ||
Augie Fackler
|
r43346 | wait, | ||
unlock, | ||||
self.invalidatedirstate, | ||||
Augie Fackler
|
r43347 | _(b'working directory of %s') % self.origroot, | ||
Augie Fackler
|
r43346 | ) | ||
Matt Mackall
|
r4917 | self._wlockref = weakref.ref(l) | ||
return l | ||||
Benoit Boissinot
|
r1531 | |||
Siddharth Agarwal
|
r26488 | def _currentlock(self, lockref): | ||
"""Returns the lock if it's held, or None if it's not.""" | ||||
if lockref is None: | ||||
return None | ||||
l = lockref() | ||||
if l is None or not l.held: | ||||
return None | ||||
return l | ||||
Siddharth Agarwal
|
r26489 | def currentwlock(self): | ||
"""Returns the wlock if it's held, or None if it's not.""" | ||||
return self._currentlock(self._wlockref) | ||||
Martin von Zweigbergk
|
r44111 | def checkcommitpatterns(self, wctx, match, status, fail): | ||
Mads Kiilerich
|
r30332 | """check for commit arguments that aren't committable""" | ||
timeless
|
r28814 | if match.isexact() or match.prefix(): | ||
timeless
|
r28813 | matched = set(status.modified + status.added + status.removed) | ||
for f in match.files(): | ||||
f = self.dirstate.normalize(f) | ||||
Augie Fackler
|
r43347 | if f == b'.' or f in matched or f in wctx.substate: | ||
timeless
|
r28813 | continue | ||
if f in status.deleted: | ||||
Augie Fackler
|
r43347 | fail(f, _(b'file not found!')) | ||
Martin von Zweigbergk
|
r44110 | # Is it a directory that exists or used to exist? | ||
if self.wvfs.isdir(f) or wctx.p1().hasdir(f): | ||||
Augie Fackler
|
r43347 | d = f + b'/' | ||
timeless
|
r28813 | for mf in matched: | ||
if mf.startswith(d): | ||||
break | ||||
else: | ||||
Augie Fackler
|
r43347 | fail(f, _(b"no match under directory!")) | ||
timeless
|
r28813 | elif f not in self.dirstate: | ||
Augie Fackler
|
r43347 | fail(f, _(b"file not tracked!")) | ||
timeless
|
r28813 | |||
Pierre-Yves David
|
r18016 | @unfilteredmethod | ||
Augie Fackler
|
r43346 | def commit( | ||
self, | ||||
Augie Fackler
|
r43347 | text=b"", | ||
Augie Fackler
|
r43346 | user=None, | ||
date=None, | ||||
match=None, | ||||
force=False, | ||||
Matt Harbison
|
r44475 | editor=None, | ||
Augie Fackler
|
r43346 | extra=None, | ||
): | ||||
Benoit Boissinot
|
r8515 | """Add a new revision to current repository. | ||
Matt Mackall
|
r8706 | Revision information is gathered from the working directory, | ||
match can be used to filter the committed files. If editor is | ||||
supplied, it is called to get a commit message. | ||||
Benoit Boissinot
|
r8515 | """ | ||
Pierre-Yves David
|
r26322 | if extra is None: | ||
extra = {} | ||||
Matt Mackall
|
r8709 | |||
Matt Mackall
|
r8715 | def fail(f, msg): | ||
Martin von Zweigbergk
|
r46450 | raise error.InputError(b'%s: %s' % (f, msg)) | ||
Matt Mackall
|
r8715 | |||
if not match: | ||||
Martin von Zweigbergk
|
r41825 | match = matchmod.always() | ||
Matt Mackall
|
r8715 | |||
if not force: | ||||
match.bad = fail | ||||
Martin von Zweigbergk
|
r41399 | # lock() for recent changelog (see issue4368) | ||
with self.wlock(), self.lock(): | ||||
Matt Mackall
|
r8813 | wctx = self[None] | ||
Benoit Boissinot
|
r10970 | merge = len(wctx.parents()) > 1 | ||
mpm@selenic.com
|
r1089 | |||
Martin von Zweigbergk
|
r32312 | if not force and merge and not match.always(): | ||
Augie Fackler
|
r43346 | raise error.Abort( | ||
_( | ||||
Augie Fackler
|
r43347 | b'cannot partially commit a merge ' | ||
b'(do not specify files or patterns)' | ||||
Augie Fackler
|
r43346 | ) | ||
) | ||||
Patrick Mezard
|
r6706 | |||
Martin von Zweigbergk
|
r22928 | status = self.status(match=match, clean=force) | ||
Matt Mackall
|
r8706 | if force: | ||
Augie Fackler
|
r43346 | status.modified.extend( | ||
status.clean | ||||
) # mq may commit clean files | ||||
Benoit Boissinot
|
r3621 | |||
Matt Mackall
|
r8813 | # check subrepos | ||
Yuya Nishihara
|
r36026 | subs, commitsubs, newstate = subrepoutil.precommit( | ||
Augie Fackler
|
r43346 | self.ui, wctx, status, match, force=force | ||
) | ||||
Matt Mackall
|
r8813 | |||
Matt Mackall
|
r8709 | # make sure all explicit patterns are matched | ||
timeless
|
r28813 | if not force: | ||
Martin von Zweigbergk
|
r44111 | self.checkcommitpatterns(wctx, match, status, fail) | ||
Matt Mackall
|
r8709 | |||
Augie Fackler
|
r43346 | cctx = context.workingcommitctx( | ||
self, status, text, user, date, extra | ||||
) | ||||
David Schleimer
|
r18659 | |||
Augie Fackler
|
r45383 | ms = mergestatemod.mergestate.read(self) | ||
Martin von Zweigbergk
|
r44889 | mergeutil.checkunresolved(ms) | ||
Matt Mackall
|
r25840 | # internal config: ui.allowemptycommit | ||
Manuel Jacob
|
r45648 | if cctx.isempty() and not self.ui.configbool( | ||
b'ui', b'allowemptycommit' | ||||
): | ||||
Martin von Zweigbergk
|
r44929 | self.ui.debug(b'nothing to commit, clearing merge state\n') | ||
Martin von Zweigbergk
|
r44919 | ms.reset() | ||
Matt Mackall
|
r8404 | return None | ||
David Schleimer
|
r18660 | if merge and cctx.deleted(): | ||
Augie Fackler
|
r43347 | raise error.Abort(_(b"cannot commit merge with missing files")) | ||
Patrick Mezard
|
r16536 | |||
Matt Mackall
|
r8496 | if editor: | ||
Matt Mackall
|
r8994 | cctx._text = editor(self, cctx, subs) | ||
Augie Fackler
|
r43346 | edited = text != cctx._text | ||
Matt Mackall
|
r8813 | |||
FUJIWARA Katsunori
|
r20765 | # Save commit message in case this transaction gets rolled back | ||
# (e.g. by a pretxncommit hook). Leave the content alone on | ||||
# the assumption that the user will use the same editor again. | ||||
msgfn = self.savecommitmessage(cctx._text) | ||||
Matt Mackall
|
r16073 | # commit subs and write new state | ||
if subs: | ||||
Martin von Zweigbergk
|
r41837 | uipathfn = scmutil.getuipathfn(self) | ||
Matt Mackall
|
r16073 | for s in sorted(commitsubs): | ||
Edouard Gomez
|
r11112 | sub = wctx.sub(s) | ||
Augie Fackler
|
r43346 | self.ui.status( | ||
Augie Fackler
|
r43347 | _(b'committing subrepository %s\n') | ||
Augie Fackler
|
r43346 | % uipathfn(subrepoutil.subrelpath(sub)) | ||
) | ||||
Edouard Gomez
|
r11112 | sr = sub.commit(cctx._text, user, date) | ||
Matt Mackall
|
r16073 | newstate[s] = (newstate[s][0], sr) | ||
Yuya Nishihara
|
r36026 | subrepoutil.writestate(self, newstate) | ||
Matt Mackall
|
r8813 | |||
Benoit Boissinot
|
r10970 | p1, p2 = self.dirstate.parents() | ||
Joerg Sonnenberger
|
r47771 | hookp1, hookp2 = hex(p1), (p2 != self.nullid and hex(p2) or b'') | ||
Greg Ward
|
r9935 | try: | ||
Augie Fackler
|
r43346 | self.hook( | ||
Augie Fackler
|
r43347 | b"precommit", throw=True, parent1=hookp1, parent2=hookp2 | ||
Augie Fackler
|
r43346 | ) | ||
Augie Fackler
|
r43347 | with self.transaction(b'commit'): | ||
Martin von Zweigbergk
|
r41398 | ret = self.commitctx(cctx, True) | ||
# update bookmarks, dirstate and mergestate | ||||
bookmarks.update(self, [p1, p2], ret) | ||||
cctx.markcommitted(ret) | ||||
ms.reset() | ||||
Augie Fackler
|
r43346 | except: # re-raises | ||
Greg Ward
|
r9935 | if edited: | ||
self.ui.write( | ||||
Augie Fackler
|
r43347 | _(b'note: commit message saved in %s\n') % msgfn | ||
Augie Fackler
|
r43346 | ) | ||
Martin von Zweigbergk
|
r45227 | self.ui.write( | ||
_( | ||||
b"note: use 'hg commit --logfile " | ||||
b".hg/last-message.txt --edit' to reuse it\n" | ||||
) | ||||
) | ||||
Greg Ward
|
r9935 | raise | ||
Patrick Mezard
|
r6710 | |||
Kyle Lippincott
|
r44217 | def commithook(unused_success): | ||
Pierre-Yves David
|
r23129 | # hack for command that use a temporary commit (eg: histedit) | ||
# temporary commit got stripped before hook release | ||||
FUJIWARA Katsunori
|
r24992 | if self.changelog.hasnode(ret): | ||
Augie Fackler
|
r43346 | self.hook( | ||
Augie Fackler
|
r43347 | b"commit", node=hex(ret), parent1=hookp1, parent2=hookp2 | ||
Augie Fackler
|
r43346 | ) | ||
Mads Kiilerich
|
r16680 | self._afterlock(commithook) | ||
Sune Foldager
|
r10492 | return ret | ||
Pierre-Yves David
|
r18016 | @unfilteredmethod | ||
Valentin Gatien-Baron
|
r42839 | def commitctx(self, ctx, error=False, origctx=None): | ||
r45759 | return commit.commitctx(self, ctx, error=error, origctx=origctx) | |||
mpm@selenic.com
|
r1089 | |||
Pierre-Yves David
|
r18016 | @unfilteredmethod | ||
Idan Kamara
|
r18310 | def destroying(self): | ||
Augie Fackler
|
r46554 | """Inform the repository that nodes are about to be destroyed. | ||
Idan Kamara
|
r18310 | Intended for use by strip and rollback, so there's a common | ||
place for anything that has to be done before destroying history. | ||||
This is mostly useful for saving state that is in memory and waiting | ||||
to be flushed when the current lock is released. Because a call to | ||||
destroyed is imminent, the repo will be invalidated causing those | ||||
changes to stay in memory (waiting for the next unlock), or vanish | ||||
completely. | ||||
Augie Fackler
|
r46554 | """ | ||
Idan Kamara
|
r18312 | # When using the same lock to commit and strip, the phasecache is left | ||
# dirty after committing. Then when we strip, the repo is invalidated, | ||||
# causing those changes to disappear. | ||||
Martin von Zweigbergk
|
r43744 | if '_phasecache' in vars(self): | ||
Idan Kamara
|
r18312 | self._phasecache.write() | ||
Idan Kamara
|
r18310 | @unfilteredmethod | ||
Pierre-Yves David
|
r18395 | def destroyed(self): | ||
Augie Fackler
|
r46554 | """Inform the repository that nodes have been destroyed. | ||
Greg Ward
|
r9150 | Intended for use by strip and rollback, so there's a common | ||
Joshua Redstone
|
r17013 | place for anything that has to be done after destroying history. | ||
Augie Fackler
|
r46554 | """ | ||
Idan Kamara
|
r18221 | # When one tries to: | ||
# 1) destroy nodes thus calling this method (e.g. strip) | ||||
# 2) use phasecache somewhere (e.g. commit) | ||||
# | ||||
# then 2) will fail because the phasecache contains nodes that were | ||||
# removed. We can either remove phasecache from the filecache, | ||||
# causing it to reload next time it is accessed, or simply filter | ||||
# the removed nodes now and write the updated cache. | ||||
Idan Kamara
|
r18757 | self._phasecache.filterunknown(self) | ||
self._phasecache.write() | ||||
Idan Kamara
|
r18221 | |||
Pierre-Yves David
|
r32264 | # refresh all repository caches | ||
self.updatecaches() | ||||
Pierre-Yves David
|
r18223 | |||
Greg Ward
|
r9151 | # Ensure the persistent tag cache is updated. Doing it now | ||
# means that the tag cache only has to worry about destroyed | ||||
# heads immediately after a strip/rollback. That in turn | ||||
# guarantees that "cachetip == currenttip" (comparing both rev | ||||
# and node) always means no nodes have been added or destroyed. | ||||
# XXX this is suboptimal when qrefresh'ing: we strip the current | ||||
# head, refresh the tag cache, then immediately add a new head. | ||||
# But I think doing it this way is necessary for the "instant | ||||
# tag cache retrieval" case to work. | ||||
Idan Kamara
|
r18313 | self.invalidate() | ||
Idan Kamara
|
r17324 | |||
Augie Fackler
|
r43346 | def status( | ||
self, | ||||
Augie Fackler
|
r43347 | node1=b'.', | ||
Augie Fackler
|
r43346 | node2=None, | ||
match=None, | ||||
ignored=False, | ||||
clean=False, | ||||
unknown=False, | ||||
listsubrepos=False, | ||||
): | ||||
Sean Farley
|
r21596 | '''a convenience method that calls node1.status(node2)''' | ||
Augie Fackler
|
r43346 | return self[node1].status( | ||
node2, match, ignored, clean, unknown, listsubrepos | ||||
) | ||||
Vadim Gelfer
|
r2661 | |||
Siddharth Agarwal
|
r32814 | def addpostdsstatus(self, ps): | ||
"""Add a callback to run within the wlock, at the point at which status | ||||
fixups happen. | ||||
On status completion, callback(wctx, status) will be called with the | ||||
wlock held, unless the dirstate has changed from underneath or the wlock | ||||
couldn't be grabbed. | ||||
Callbacks should not capture and use a cached copy of the dirstate -- | ||||
it might change in the meanwhile. Instead, they should access the | ||||
dirstate via wctx.repo().dirstate. | ||||
This list is emptied out after each status run -- extensions should | ||||
make sure it adds to this list each time dirstate.status is called. | ||||
Extensions should also make sure they don't call this for statuses | ||||
that don't involve the dirstate. | ||||
""" | ||||
# The list is located here for uniqueness reasons -- it is actually | ||||
# managed by the workingctx, but that isn't unique per-repo. | ||||
self._postdsstatus.append(ps) | ||||
def postdsstatus(self): | ||||
"""Used by workingctx to get the list of post-dirstate-status hooks.""" | ||||
return self._postdsstatus | ||||
def clearpostdsstatus(self): | ||||
"""Used by workingctx to clear post-dirstate-status hooks.""" | ||||
del self._postdsstatus[:] | ||||
John Mulligan
|
r8796 | def heads(self, start=None): | ||
Stanislau Hlebik
|
r30875 | if start is None: | ||
Stanislau Hlebik
|
r30905 | cl = self.changelog | ||
Stanislau Hlebik
|
r30906 | headrevs = reversed(cl.headrevs()) | ||
Stanislau Hlebik
|
r30905 | return [cl.node(rev) for rev in headrevs] | ||
Stanislau Hlebik
|
r30875 | |||
Benoit Boissinot
|
r1550 | heads = self.changelog.heads(start) | ||
# sort the output in rev descending order | ||||
Thomas Arendsen Hein
|
r13075 | return sorted(heads, key=self.changelog.rev, reverse=True) | ||
mpm@selenic.com
|
r1089 | |||
John Mulligan
|
r8694 | def branchheads(self, branch=None, start=None, closed=False): | ||
Augie Fackler
|
r46554 | """return a (possibly filtered) list of heads for the given branch | ||
Sune Foldager
|
r9475 | |||
Heads are returned in topological order, from newest to oldest. | ||||
If branch is None, use the dirstate branch. | ||||
If start is not None, return only heads reachable from start. | ||||
If closed is True, return heads that are marked as closed as well. | ||||
Augie Fackler
|
r46554 | """ | ||
Matt Mackall
|
r6747 | if branch is None: | ||
branch = self[None].branch() | ||||
Benoit Boissinot
|
r9675 | branches = self.branchmap() | ||
Pulkit Goyal
|
r42171 | if not branches.hasbranch(branch): | ||
Eric Hopper
|
r4648 | return [] | ||
John Mulligan
|
r7654 | # the cache returns heads ordered lowest to highest | ||
Brodie Rao
|
r20189 | bheads = list(reversed(branches.branchheads(branch, closed=closed))) | ||
Eric Hopper
|
r4648 | if start is not None: | ||
John Mulligan
|
r7654 | # filter out the heads that cannot be reached from startrev | ||
Sune Foldager
|
r9475 | fbheads = set(self.changelog.nodesbetween([start], bheads)[2]) | ||
bheads = [h for h in bheads if h in fbheads] | ||||
John Mulligan
|
r7654 | return bheads | ||
Eric Hopper
|
r4648 | |||
mpm@selenic.com
|
r1089 | def branches(self, nodes): | ||
Thomas Arendsen Hein
|
r1615 | if not nodes: | ||
nodes = [self.changelog.tip()] | ||||
mpm@selenic.com
|
r1089 | b = [] | ||
for n in nodes: | ||||
t = n | ||||
Martin Geisler
|
r14494 | while True: | ||
mpm@selenic.com
|
r1089 | p = self.changelog.parents(n) | ||
Joerg Sonnenberger
|
r47771 | if p[1] != self.nullid or p[0] == self.nullid: | ||
mpm@selenic.com
|
r1089 | b.append((t, n, p[0], p[1])) | ||
break | ||||
n = p[0] | ||||
return b | ||||
def between(self, pairs): | ||||
r = [] | ||||
for top, bottom in pairs: | ||||
n, l, i = top, [], 0 | ||||
f = 1 | ||||
Joerg Sonnenberger
|
r47771 | while n != bottom and n != self.nullid: | ||
mpm@selenic.com
|
r1089 | p = self.changelog.parents(n)[0] | ||
if i == f: | ||||
l.append(n) | ||||
f = f * 2 | ||||
n = p | ||||
i += 1 | ||||
r.append(l) | ||||
return r | ||||
Pierre-Yves David
|
r20924 | def checkpush(self, pushop): | ||
Patrick Mezard
|
r13327 | """Extensions can override this function if additional checks have | ||
to be performed before pushing, or call it if they override push | ||||
command. | ||||
""" | ||||
FUJIWARA Katsunori
|
r21043 | @unfilteredpropertycache | ||
def prepushoutgoinghooks(self): | ||||
Mads Kiilerich
|
r28876 | """Return util.hooks consists of a pushop with repo, remote, outgoing | ||
methods, which are called before pushing changesets. | ||||
FUJIWARA Katsunori
|
r21043 | """ | ||
return util.hooks() | ||||
Matt Mackall
|
r11368 | def pushkey(self, namespace, key, old, new): | ||
Pierre-Yves David
|
r23416 | try: | ||
Pierre-Yves David
|
r24824 | tr = self.currenttransaction() | ||
hookargs = {} | ||||
if tr is not None: | ||||
hookargs.update(tr.hookargs) | ||||
Pulkit Goyal
|
r36418 | hookargs = pycompat.strkwargs(hookargs) | ||
Augie Fackler
|
r43906 | hookargs['namespace'] = namespace | ||
hookargs['key'] = key | ||||
hookargs['old'] = old | ||||
hookargs['new'] = new | ||||
Augie Fackler
|
r43347 | self.hook(b'prepushkey', throw=True, **hookargs) | ||
Gregory Szorc
|
r25660 | except error.HookAbort as exc: | ||
Augie Fackler
|
r43347 | self.ui.write_err(_(b"pushkey-abort: %s\n") % exc) | ||
Pierre-Yves David
|
r23416 | if exc.hint: | ||
Augie Fackler
|
r43347 | self.ui.write_err(_(b"(%s)\n") % exc.hint) | ||
Pierre-Yves David
|
r23416 | return False | ||
Augie Fackler
|
r43347 | self.ui.debug(b'pushing key for "%s:%s"\n' % (namespace, key)) | ||
Brodie Rao
|
r14102 | ret = pushkey.push(self, namespace, key, old, new) | ||
Augie Fackler
|
r43346 | |||
Kyle Lippincott
|
r44217 | def runhook(unused_success): | ||
Augie Fackler
|
r43346 | self.hook( | ||
Augie Fackler
|
r43347 | b'pushkey', | ||
Augie Fackler
|
r43346 | namespace=namespace, | ||
key=key, | ||||
old=old, | ||||
new=new, | ||||
ret=ret, | ||||
) | ||||
Pierre-Yves David
|
r23648 | self._afterlock(runhook) | ||
Brodie Rao
|
r14102 | return ret | ||
Matt Mackall
|
r11368 | |||
def listkeys(self, namespace): | ||||
Augie Fackler
|
r43347 | self.hook(b'prelistkeys', throw=True, namespace=namespace) | ||
self.ui.debug(b'listing keys for "%s"\n' % namespace) | ||||
Brodie Rao
|
r14102 | values = pushkey.list(self, namespace) | ||
Augie Fackler
|
r43347 | self.hook(b'listkeys', namespace=namespace, values=values) | ||
Brodie Rao
|
r14102 | return values | ||
Matt Mackall
|
r11368 | |||
Peter Arrenbrecht
|
r14048 | def debugwireargs(self, one, two, three=None, four=None, five=None): | ||
Peter Arrenbrecht
|
r13720 | '''used to test argument passing over the wire''' | ||
Augie Fackler
|
r43347 | return b"%s %s %s %s %s" % ( | ||
Augie Fackler
|
r43346 | one, | ||
two, | ||||
pycompat.bytestr(three), | ||||
pycompat.bytestr(four), | ||||
pycompat.bytestr(five), | ||||
) | ||||
Matt Mackall
|
r11368 | |||
Patrick Mezard
|
r14529 | def savecommitmessage(self, text): | ||
Augie Fackler
|
r43347 | fp = self.vfs(b'last-message.txt', b'wb') | ||
Patrick Mezard
|
r14529 | try: | ||
fp.write(text) | ||||
finally: | ||||
fp.close() | ||||
Augie Fackler
|
r43346 | return self.pathto(fp.name[len(self.root) + 1 :]) | ||
Raphaël Gomès
|
r47447 | def register_wanted_sidedata(self, category): | ||
Raphaël Gomès
|
r47841 | if requirementsmod.REVLOGV2_REQUIREMENT not in self.requirements: | ||
# Only revlogv2 repos can want sidedata. | ||||
return | ||||
Raphaël Gomès
|
r47447 | self._wanted_sidedata.add(pycompat.bytestr(category)) | ||
Raphaël Gomès
|
r47846 | def register_sidedata_computer( | ||
self, kind, category, keys, computer, flags, replace=False | ||||
): | ||||
r47839 | if kind not in revlogconst.ALL_KINDS: | |||
Raphaël Gomès
|
r47447 | msg = _(b"unexpected revlog kind '%s'.") | ||
raise error.ProgrammingError(msg % kind) | ||||
category = pycompat.bytestr(category) | ||||
Raphaël Gomès
|
r47846 | already_registered = category in self._sidedata_computers.get(kind, []) | ||
if already_registered and not replace: | ||||
Raphaël Gomès
|
r47447 | msg = _( | ||
b"cannot register a sidedata computer twice for category '%s'." | ||||
) | ||||
raise error.ProgrammingError(msg % category) | ||||
Raphaël Gomès
|
r47846 | if replace and not already_registered: | ||
msg = _( | ||||
b"cannot replace a sidedata computer that isn't registered " | ||||
b"for category '%s'." | ||||
) | ||||
raise error.ProgrammingError(msg % category) | ||||
Raphaël Gomès
|
r47447 | self._sidedata_computers.setdefault(kind, {}) | ||
Raphaël Gomès
|
r47844 | self._sidedata_computers[kind][category] = (keys, computer, flags) | ||
Raphaël Gomès
|
r47447 | |||
Patrick Mezard
|
r14529 | |||
mason@suse.com
|
r1806 | # used to avoid circular references so destructors work | ||
Benoit Boissinot
|
r3790 | def aftertrans(files): | ||
renamefiles = [tuple(t) for t in files] | ||||
Augie Fackler
|
r43346 | |||
mason@suse.com
|
r1806 | def a(): | ||
FUJIWARA Katsunori
|
r18952 | for vfs, src, dest in renamefiles: | ||
Ryan McElroy
|
r31550 | # if src and dest refer to a same file, vfs.rename is a no-op, | ||
# leaving both src and dest on disk. delete dest to make sure | ||||
# the rename couldn't be such a no-op. | ||||
vfs.tryunlink(dest) | ||||
Jun Wu
|
r31209 | try: | ||
FUJIWARA Katsunori
|
r18952 | vfs.rename(src, dest) | ||
Augie Fackler
|
r43346 | except OSError: # journal file does not yet exist | ||
Alain Leufroy
|
r16441 | pass | ||
Augie Fackler
|
r43346 | |||
mason@suse.com
|
r1806 | return a | ||
Augie Fackler
|
r43346 | |||
Alexander Solovyov
|
r14266 | def undoname(fn): | ||
base, name = os.path.split(fn) | ||||
Augie Fackler
|
r43347 | assert name.startswith(b'journal') | ||
return os.path.join(base, name.replace(b'journal', b'undo', 1)) | ||||
Alexander Solovyov
|
r14266 | |||
Augie Fackler
|
r43346 | |||
Gregory Szorc
|
r39585 | def instance(ui, path, create, intents=None, createopts=None): | ||
r47669 | localpath = urlutil.urllocalpath(path) | |||
Gregory Szorc
|
r39584 | if create: | ||
Martin von Zweigbergk
|
r39627 | createrepository(ui, localpath, createopts=createopts) | ||
Gregory Szorc
|
r39584 | |||
Gregory Szorc
|
r39723 | return makelocalrepository(ui, localpath, intents=intents) | ||
Thomas Arendsen Hein
|
r3223 | |||
Augie Fackler
|
r43346 | |||
Vadim Gelfer
|
r2740 | def islocal(path): | ||
return True | ||||
Gregory Szorc
|
r28164 | |||
Augie Fackler
|
r43346 | |||
Gregory Szorc
|
r40032 | def defaultcreateopts(ui, createopts=None): | ||
"""Populate the default creation options for a repository. | ||||
A dictionary of explicitly requested creation options can be passed | ||||
in. Missing keys will be populated. | ||||
""" | ||||
createopts = dict(createopts or {}) | ||||
Augie Fackler
|
r43347 | if b'backend' not in createopts: | ||
Gregory Szorc
|
r40032 | # experimental config: storage.new-repo-backend | ||
Augie Fackler
|
r43347 | createopts[b'backend'] = ui.config(b'storage', b'new-repo-backend') | ||
Gregory Szorc
|
r40032 | |||
return createopts | ||||
Augie Fackler
|
r43346 | |||
Gregory Szorc
|
r40032 | def newreporequirements(ui, createopts): | ||
Gregory Szorc
|
r28164 | """Determine the set of requirements for a new local repository. | ||
Extensions can wrap this function to specify custom requirements for | ||||
new repositories. | ||||
""" | ||||
Gregory Szorc
|
r39884 | # If the repo is being created from a shared repository, we copy | ||
# its requirements. | ||||
Augie Fackler
|
r43347 | if b'sharedrepo' in createopts: | ||
requirements = set(createopts[b'sharedrepo'].requirements) | ||||
if createopts.get(b'sharedrelative'): | ||||
Pulkit Goyal
|
r45946 | requirements.add(requirementsmod.RELATIVE_SHARED_REQUIREMENT) | ||
Gregory Szorc
|
r39884 | else: | ||
Pulkit Goyal
|
r45946 | requirements.add(requirementsmod.SHARED_REQUIREMENT) | ||
Gregory Szorc
|
r39884 | |||
return requirements | ||||
Augie Fackler
|
r43347 | if b'backend' not in createopts: | ||
Augie Fackler
|
r43346 | raise error.ProgrammingError( | ||
Augie Fackler
|
r43347 | b'backend key not present in createopts; ' | ||
b'was defaultcreateopts() called?' | ||||
Augie Fackler
|
r43346 | ) | ||
Gregory Szorc
|
r40032 | |||
Augie Fackler
|
r43347 | if createopts[b'backend'] != b'revlogv1': | ||
Augie Fackler
|
r43346 | raise error.Abort( | ||
_( | ||||
Augie Fackler
|
r43347 | b'unable to determine repository requirements for ' | ||
b'storage backend: %s' | ||||
Augie Fackler
|
r43346 | ) | ||
Augie Fackler
|
r43347 | % createopts[b'backend'] | ||
Augie Fackler
|
r43346 | ) | ||
Gregory Szorc
|
r40032 | |||
Raphaël Gomès
|
r47371 | requirements = {requirementsmod.REVLOGV1_REQUIREMENT} | ||
Augie Fackler
|
r43347 | if ui.configbool(b'format', b'usestore'): | ||
Raphaël Gomès
|
r47382 | requirements.add(requirementsmod.STORE_REQUIREMENT) | ||
Augie Fackler
|
r43347 | if ui.configbool(b'format', b'usefncache'): | ||
Raphaël Gomès
|
r47383 | requirements.add(requirementsmod.FNCACHE_REQUIREMENT) | ||
Augie Fackler
|
r43347 | if ui.configbool(b'format', b'dotencode'): | ||
Raphaël Gomès
|
r47381 | requirements.add(requirementsmod.DOTENCODE_REQUIREMENT) | ||
Augie Fackler
|
r43347 | |||
r44866 | compengines = ui.configlist(b'format', b'revlog-compression') | |||
for compengine in compengines: | ||||
if compengine in util.compengines: | ||||
r47610 | engine = util.compengines[compengine] | |||
if engine.available() and engine.revlogheader(): | ||||
break | ||||
r44866 | else: | |||
Augie Fackler
|
r43346 | raise error.Abort( | ||
_( | ||||
r44866 | b'compression engines %s defined by ' | |||
Augie Fackler
|
r43347 | b'format.revlog-compression not available' | ||
Augie Fackler
|
r43346 | ) | ||
r44866 | % b', '.join(b'"%s"' % e for e in compengines), | |||
Augie Fackler
|
r43346 | hint=_( | ||
Augie Fackler
|
r43347 | b'run "hg debuginstall" to list available ' | ||
b'compression engines' | ||||
Augie Fackler
|
r43346 | ), | ||
) | ||||
Gregory Szorc
|
r30818 | |||
# zlib is the historical default and doesn't need an explicit requirement. | ||||
r44866 | if compengine == b'zstd': | |||
Augie Fackler
|
r43347 | requirements.add(b'revlog-compression-zstd') | ||
elif compengine != b'zlib': | ||||
requirements.add(b'exp-compression-%s' % compengine) | ||||
Gregory Szorc
|
r30818 | |||
Gregory Szorc
|
r28164 | if scmutil.gdinitconfig(ui): | ||
Raphaël Gomès
|
r47372 | requirements.add(requirementsmod.GENERALDELTA_REQUIREMENT) | ||
Augie Fackler
|
r43347 | if ui.configbool(b'format', b'sparse-revlog'): | ||
Pulkit Goyal
|
r45933 | requirements.add(requirementsmod.SPARSEREVLOG_REQUIREMENT) | ||
r43298 | ||||
r43407 | # experimental config: format.exp-use-copies-side-data-changeset | |||
if ui.configbool(b'format', b'exp-use-copies-side-data-changeset'): | ||||
Raphaël Gomès
|
r47439 | requirements.discard(requirementsmod.REVLOGV1_REQUIREMENT) | ||
requirements.add(requirementsmod.REVLOGV2_REQUIREMENT) | ||||
Pulkit Goyal
|
r45933 | requirements.add(requirementsmod.COPIESSDC_REQUIREMENT) | ||
Augie Fackler
|
r43347 | if ui.configbool(b'experimental', b'treemanifest'): | ||
Pulkit Goyal
|
r45932 | requirements.add(requirementsmod.TREEMANIFEST_REQUIREMENT) | ||
Augie Fackler
|
r43347 | |||
revlogv2 = ui.config(b'experimental', b'revlogv2') | ||||
if revlogv2 == b'enable-unstable-format-and-corrupt-my-data': | ||||
Raphaël Gomès
|
r47439 | requirements.discard(requirementsmod.REVLOGV1_REQUIREMENT) | ||
Pulkit Goyal
|
r45933 | requirements.add(requirementsmod.REVLOGV2_REQUIREMENT) | ||
Boris Feld
|
r39334 | # experimental config: format.internal-phase | ||
Augie Fackler
|
r43347 | if ui.configbool(b'format', b'internal-phase'): | ||
Pulkit Goyal
|
r45932 | requirements.add(requirementsmod.INTERNAL_PHASE_REQUIREMENT) | ||
Augie Fackler
|
r43347 | |||
if createopts.get(b'narrowfiles'): | ||||
Pulkit Goyal
|
r45932 | requirements.add(requirementsmod.NARROW_REQUIREMENT) | ||
Gregory Szorc
|
r39587 | |||
Augie Fackler
|
r43347 | if createopts.get(b'lfs'): | ||
requirements.add(b'lfs') | ||||
if ui.configbool(b'format', b'bookmarks-in-store'): | ||||
Martin von Zweigbergk
|
r42512 | requirements.add(bookmarks.BOOKMARKS_IN_STORE_REQUIREMENT) | ||
r45297 | if ui.configbool(b'format', b'use-persistent-nodemap'): | |||
Pulkit Goyal
|
r45933 | requirements.add(requirementsmod.NODEMAP_REQUIREMENT) | ||
r45295 | ||||
Pulkit Goyal
|
r46055 | # if share-safe is enabled, let's create the new repository with the new | ||
# requirement | ||||
Pulkit Goyal
|
r47052 | if ui.configbool(b'format', b'use-share-safe'): | ||
Pulkit Goyal
|
r46055 | requirements.add(requirementsmod.SHARESAFE_REQUIREMENT) | ||
Gregory Szorc
|
r28164 | return requirements | ||
Gregory Szorc
|
r39584 | |||
Augie Fackler
|
r43346 | |||
Pulkit Goyal
|
r45857 | def checkrequirementscompat(ui, requirements): | ||
Augie Fackler
|
r46554 | """Checks compatibility of repository requirements enabled and disabled. | ||
Pulkit Goyal
|
r45857 | |||
Returns a set of requirements which needs to be dropped because dependend | ||||
Augie Fackler
|
r46554 | requirements are not enabled. Also warns users about it""" | ||
Pulkit Goyal
|
r45857 | |||
dropped = set() | ||||
Raphaël Gomès
|
r47382 | if requirementsmod.STORE_REQUIREMENT not in requirements: | ||
Pulkit Goyal
|
r45857 | if bookmarks.BOOKMARKS_IN_STORE_REQUIREMENT in requirements: | ||
ui.warn( | ||||
_( | ||||
b'ignoring enabled \'format.bookmarks-in-store\' config ' | ||||
b'beacuse it is incompatible with disabled ' | ||||
b'\'format.usestore\' config\n' | ||||
) | ||||
) | ||||
dropped.add(bookmarks.BOOKMARKS_IN_STORE_REQUIREMENT) | ||||
Pulkit Goyal
|
r45946 | if ( | ||
requirementsmod.SHARED_REQUIREMENT in requirements | ||||
or requirementsmod.RELATIVE_SHARED_REQUIREMENT in requirements | ||||
): | ||||
Pulkit Goyal
|
r45858 | raise error.Abort( | ||
_( | ||||
b"cannot create shared repository as source was created" | ||||
b" with 'format.usestore' config disabled" | ||||
) | ||||
) | ||||
Pulkit Goyal
|
r46055 | if requirementsmod.SHARESAFE_REQUIREMENT in requirements: | ||
ui.warn( | ||||
_( | ||||
Pulkit Goyal
|
r47052 | b"ignoring enabled 'format.use-share-safe' config because " | ||
Pulkit Goyal
|
r46055 | b"it is incompatible with disabled 'format.usestore'" | ||
b" config\n" | ||||
) | ||||
) | ||||
dropped.add(requirementsmod.SHARESAFE_REQUIREMENT) | ||||
Pulkit Goyal
|
r45857 | return dropped | ||
Gregory Szorc
|
r39585 | def filterknowncreateopts(ui, createopts): | ||
"""Filters a dict of repo creation options against options that are known. | ||||
Receives a dict of repo creation options and returns a dict of those | ||||
options that we don't know how to handle. | ||||
This function is called as part of repository creation. If the | ||||
returned dict contains any items, repository creation will not | ||||
be allowed, as it means there was a request to create a repository | ||||
with options not recognized by loaded code. | ||||
Extensions can wrap this function to filter out creation options | ||||
they know how to handle. | ||||
""" | ||||
Gregory Szorc
|
r39884 | known = { | ||
Augie Fackler
|
r43347 | b'backend', | ||
b'lfs', | ||||
b'narrowfiles', | ||||
b'sharedrepo', | ||||
b'sharedrelative', | ||||
b'shareditems', | ||||
b'shallowfilestore', | ||||
Gregory Szorc
|
r39884 | } | ||
Gregory Szorc
|
r39587 | |||
return {k: v for k, v in createopts.items() if k not in known} | ||||
Gregory Szorc
|
r39585 | |||
Augie Fackler
|
r43346 | |||
Martin von Zweigbergk
|
r39626 | def createrepository(ui, path, createopts=None): | ||
Gregory Szorc
|
r39584 | """Create a new repository in a vfs. | ||
Martin von Zweigbergk
|
r39626 | ``path`` path to the new repo's working directory. | ||
Martin von Zweigbergk
|
r39616 | ``createopts`` options for the new repository. | ||
Gregory Szorc
|
r39884 | |||
The following keys for ``createopts`` are recognized: | ||||
Gregory Szorc
|
r40032 | backend | ||
The storage backend to use. | ||||
Matt Harbison
|
r40360 | lfs | ||
Repository will be created with ``lfs`` requirement. The lfs extension | ||||
will automatically be loaded when the repository is accessed. | ||||
Gregory Szorc
|
r39884 | narrowfiles | ||
Set up repository to support narrow file storage. | ||||
sharedrepo | ||||
Repository object from which storage should be shared. | ||||
sharedrelative | ||||
Boolean indicating if the path to the shared repo should be | ||||
stored as relative. By default, the pointer to the "parent" repo | ||||
is stored as an absolute path. | ||||
Gregory Szorc
|
r39885 | shareditems | ||
Set of items to share to the new repository (in addition to storage). | ||||
Gregory Szorc
|
r40426 | shallowfilestore | ||
Indicates that storage for files should be shallow (not all ancestor | ||||
revisions are known). | ||||
Gregory Szorc
|
r39584 | """ | ||
Gregory Szorc
|
r40032 | createopts = defaultcreateopts(ui, createopts=createopts) | ||
Gregory Szorc
|
r39585 | |||
unknownopts = filterknowncreateopts(ui, createopts) | ||||
if not isinstance(unknownopts, dict): | ||||
Augie Fackler
|
r43346 | raise error.ProgrammingError( | ||
Martin von Zweigbergk
|
r43387 | b'filterknowncreateopts() did not return a dict' | ||
Augie Fackler
|
r43346 | ) | ||
Gregory Szorc
|
r39585 | |||
if unknownopts: | ||||
Augie Fackler
|
r43346 | raise error.Abort( | ||
_( | ||||
Augie Fackler
|
r43347 | b'unable to create repository because of unknown ' | ||
b'creation option: %s' | ||||
Augie Fackler
|
r43346 | ) | ||
Augie Fackler
|
r43347 | % b', '.join(sorted(unknownopts)), | ||
hint=_(b'is a required extension not loaded?'), | ||||
Augie Fackler
|
r43346 | ) | ||
Gregory Szorc
|
r39585 | |||
requirements = newreporequirements(ui, createopts=createopts) | ||||
Pulkit Goyal
|
r45857 | requirements -= checkrequirementscompat(ui, requirements) | ||
Gregory Szorc
|
r39584 | |||
Martin von Zweigbergk
|
r39626 | wdirvfs = vfsmod.vfs(path, expandpath=True, realpath=True) | ||
Gregory Szorc
|
r39584 | |||
hgvfs = vfsmod.vfs(wdirvfs.join(b'.hg')) | ||||
Martin von Zweigbergk
|
r39626 | if hgvfs.exists(): | ||
Augie Fackler
|
r43347 | raise error.RepoError(_(b'repository %s already exists') % path) | ||
if b'sharedrepo' in createopts: | ||||
sharedpath = createopts[b'sharedrepo'].sharedpath | ||||
if createopts.get(b'sharedrelative'): | ||||
Gregory Szorc
|
r39884 | try: | ||
sharedpath = os.path.relpath(sharedpath, hgvfs.base) | ||||
Matt Harbison
|
r47650 | sharedpath = util.pconvert(sharedpath) | ||
Gregory Szorc
|
r39884 | except (IOError, ValueError) as e: | ||
# ValueError is raised on Windows if the drive letters differ | ||||
# on each path. | ||||
Augie Fackler
|
r43346 | raise error.Abort( | ||
Augie Fackler
|
r43347 | _(b'cannot calculate relative path'), | ||
Augie Fackler
|
r43346 | hint=stringutil.forcebytestr(e), | ||
) | ||||
Gregory Szorc
|
r39884 | |||
Gregory Szorc
|
r39883 | if not wdirvfs.exists(): | ||
wdirvfs.makedirs() | ||||
Gregory Szorc
|
r39584 | hgvfs.makedir(notindexed=True) | ||
Augie Fackler
|
r43347 | if b'sharedrepo' not in createopts: | ||
Boris Feld
|
r40824 | hgvfs.mkdir(b'cache') | ||
Boris Feld
|
r40825 | hgvfs.mkdir(b'wcache') | ||
Gregory Szorc
|
r39584 | |||
Raphaël Gomès
|
r47382 | has_store = requirementsmod.STORE_REQUIREMENT in requirements | ||
if has_store and b'sharedrepo' not in createopts: | ||||
Gregory Szorc
|
r39584 | hgvfs.mkdir(b'store') | ||
# We create an invalid changelog outside the store so very old | ||||
# Mercurial versions (which didn't know about the requirements | ||||
# file) encounter an error on reading the changelog. This | ||||
# effectively locks out old clients and prevents them from | ||||
# mucking with a repo in an unknown format. | ||||
# | ||||
Raphaël Gomès
|
r47135 | # The revlog header has version 65535, which won't be recognized by | ||
Gregory Szorc
|
r39584 | # such old clients. | ||
Augie Fackler
|
r43346 | hgvfs.append( | ||
b'00changelog.i', | ||||
Raphaël Gomès
|
r47135 | b'\0\0\xFF\xFF dummy changelog to prevent using the old repo ' | ||
Augie Fackler
|
r43346 | b'layout', | ||
) | ||||
Gregory Szorc
|
r39584 | |||
Pulkit Goyal
|
r46055 | # Filter the requirements into working copy and store ones | ||
wcreq, storereq = scmutil.filterrequirements(requirements) | ||||
# write working copy ones | ||||
scmutil.writerequires(hgvfs, wcreq) | ||||
# If there are store requirements and the current repository | ||||
# is not a shared one, write stored requirements | ||||
# For new shared repository, we don't need to write the store | ||||
# requirements as they are already present in store requires | ||||
if storereq and b'sharedrepo' not in createopts: | ||||
storevfs = vfsmod.vfs(hgvfs.join(b'store'), cacheaudited=True) | ||||
scmutil.writerequires(storevfs, storereq) | ||||
Gregory Szorc
|
r39642 | |||
Gregory Szorc
|
r39884 | # Write out file telling readers where to find the shared store. | ||
Augie Fackler
|
r43347 | if b'sharedrepo' in createopts: | ||
Gregory Szorc
|
r39884 | hgvfs.write(b'sharedpath', sharedpath) | ||
Augie Fackler
|
r43347 | if createopts.get(b'shareditems'): | ||
shared = b'\n'.join(sorted(createopts[b'shareditems'])) + b'\n' | ||||
Gregory Szorc
|
r39885 | hgvfs.write(b'shared', shared) | ||
Augie Fackler
|
r43346 | |||
Gregory Szorc
|
r39642 | def poisonrepository(repo): | ||
"""Poison a repository instance so it can no longer be used.""" | ||||
# Perform any cleanup on the instance. | ||||
repo.close() | ||||
# Our strategy is to replace the type of the object with one that | ||||
# has all attribute lookups result in error. | ||||
# | ||||
# But we have to allow the close() method because some constructors | ||||
# of repos call close() on repo references. | ||||
class poisonedrepository(object): | ||||
def __getattribute__(self, item): | ||||
Augie Fackler
|
r43906 | if item == 'close': | ||
Gregory Szorc
|
r39642 | return object.__getattribute__(self, item) | ||
Augie Fackler
|
r43346 | raise error.ProgrammingError( | ||
Martin von Zweigbergk
|
r43387 | b'repo instances should not be used after unshare' | ||
Augie Fackler
|
r43346 | ) | ||
Gregory Szorc
|
r39642 | |||
def close(self): | ||||
pass | ||||
# We may have a repoview, which intercepts __setattr__. So be sure | ||||
# we operate at the lowest level possible. | ||||
Augie Fackler
|
r43906 | object.__setattr__(repo, '__class__', poisonedrepository) | ||