##// END OF EJS Templates
sparserevlog: document the config option...
sparserevlog: document the config option This was overlooked when this graduated from experimental.

File last commit:

r41524:261d37b9 stable
r41524:261d37b9 stable
Show More
localrepo.py
3089 lines | 117.3 KiB | text/x-python | PythonLexer
mpm@selenic.com
Break apart hg.py...
r1089 # localrepo.py - read/write repository class for mercurial
#
Thomas Arendsen Hein
Updated copyright notices and add "and others" to "hg version"
r4635 # Copyright 2005-2007 Matt Mackall <mpm@selenic.com>
mpm@selenic.com
Break apart hg.py...
r1089 #
Martin Geisler
updated license to be explicit about GPL version 2
r8225 # This software may be used and distributed according to the terms of the
Matt Mackall
Update license to GPLv2+
r10263 # GNU General Public License version 2 or any later version.
Gregory Szorc
localrepo: use absolute_import
r27522
from __future__ import absolute_import
import errno
Augie Fackler
cleanup: replace uses of util.(md5|sha1|sha256|sha512) with hashlib.\1...
r29341 import hashlib
Gregory Szorc
localrepo: use absolute_import
r27522 import os
import random
Gregory Szorc
wireproto: implement command executor interface for version 1 peers...
r37648 import sys
Gregory Szorc
localrepo: use absolute_import
r27522 import time
import weakref
from .i18n import _
from .node import (
Martin von Zweigbergk
context: move logic from changectx.__init__ to localrepo.__getitem__ (API)...
r39994 bin,
Gregory Szorc
localrepo: use absolute_import
r27522 hex,
nullid,
Martin von Zweigbergk
context: move logic from changectx.__init__ to localrepo.__getitem__ (API)...
r39994 nullrev,
Gregory Szorc
localrepo: use absolute_import
r27522 short,
)
from . import (
bookmarks,
branchmap,
bundle2,
changegroup,
changelog,
Pierre-Yves David
color: initialize color for the localrepo ui...
r31111 color,
Gregory Szorc
localrepo: use absolute_import
r27522 context,
dirstate,
Augie Fackler
localrepo: refer to dirstateguard by its new name
r30492 dirstateguard,
Durham Goode
changegroup: replace changegroupsubset with makechangegroup...
r34099 discovery,
Gregory Szorc
localrepo: use absolute_import
r27522 encoding,
error,
exchange,
extensions,
filelog,
hook,
lock as lockmod,
manifest,
match as matchmod,
merge as mergemod,
Augie Fackler
localrepo: refer to checkunresolved by its new name
r30496 mergeutil,
Gregory Szorc
localrepo: use absolute_import
r27522 namespaces,
Martin von Zweigbergk
narrow: move narrowmatch-related methods to localrepo...
r36489 narrowspec,
Gregory Szorc
localrepo: use absolute_import
r27522 obsolete,
pathutil,
phases,
pushkey,
Augie Fackler
localrepo: ensure transaction id is fully bytes on py3
r31508 pycompat,
Gregory Szorc
localrepo: use peer interfaces...
r33802 repository,
Gregory Szorc
localrepo: use absolute_import
r27522 repoview,
revset,
Yuya Nishihara
revset: split language services to revsetlang module (API)...
r31024 revsetlang,
Gregory Szorc
localrepo: use absolute_import
r27522 scmutil,
Gregory Szorc
dirstate: expose a sparse matcher on dirstate (API)...
r33373 sparse,
Gregory Szorc
localrepo: resolve store and cachevfs in makelocalrepository()...
r39733 store as storemod,
Yuya Nishihara
subrepo: split non-core functions to new module...
r36026 subrepoutil,
Gregory Szorc
localrepo: use absolute_import
r27522 tags as tagsmod,
transaction,
FUJIWARA Katsunori
localrepo: check HG_PENDING strictly...
r31054 txnutil,
Gregory Szorc
localrepo: use absolute_import
r27522 util,
Pierre-Yves David
vfs: use 'vfs' module directly in 'mercurial.localrepo'...
r31231 vfs as vfsmod,
Gregory Szorc
localrepo: use absolute_import
r27522 )
Yuya Nishihara
stringutil: bulk-replace call sites to point to new module...
r37102 from .utils import (
Gregory Szorc
interfaceutil: module to stub out zope.interface...
r37828 interfaceutil,
Yuya Nishihara
procutil: bulk-replace function calls to point to new module
r37138 procutil,
Yuya Nishihara
stringutil: bulk-replace call sites to point to new module...
r37102 stringutil,
)
Gregory Szorc
localrepo: use absolute_import
r27522
Boris Feld
sparse-revlog: set max delta chain length to on thousand...
r39542 from .revlogutils import (
constants as revlogconst,
)
Gregory Szorc
localrepo: use absolute_import
r27522 release = lockmod.release
timeless
pycompat: switch to util.urlreq/util.urlerr for py3 compat
r28883 urlerr = util.urlerr
urlreq = util.urlreq
Ronny Pfannschmidt
switch lock releasing in the core from gc to explicit
r8109
FUJIWARA Katsunori
localrepo: store path and vfs location of cached properties...
r33277 # set of (path, vfs-location) tuples. vfs-location is:
# - 'plain for vfs relative paths
# - '' for svfs relative paths
_cachedfiles = set()
FUJIWARA Katsunori
localrepo: factor out base of filecache annotation class...
r33173 class _basefilecache(scmutil.filecache):
Pierre-Yves David
clfilter: ensure that filecache on localrepo is unfiltered...
r18014 """All filecache usage on repo are done for logic that should be unfiltered
"""
def __get__(self, repo, type=None):
Martijn Pieters
scmutil: allow access to filecache descriptor on class...
r29373 if repo is None:
return self
Yuya Nishihara
filecache: unimplement __set__() and __delete__() (API)...
r40454 # proxy to unfiltered __dict__ since filtered repo has no entry
Yuya Nishihara
filecache: use try-except for faster __dict__ lookup...
r40453 unfi = repo.unfiltered()
try:
return unfi.__dict__[self.sname]
except KeyError:
pass
return super(_basefilecache, self).__get__(unfi, type)
Yuya Nishihara
filecache: unimplement __set__() and __delete__() (API)...
r40454
def set(self, repo, value):
return super(_basefilecache, self).set(repo.unfiltered(), value)
Pierre-Yves David
clfilter: ensure that filecache on localrepo is unfiltered...
r18014
FUJIWARA Katsunori
localrepo: factor out base of filecache annotation class...
r33173 class repofilecache(_basefilecache):
"""filecache for files in .hg but outside of .hg/store"""
FUJIWARA Katsunori
localrepo: store path and vfs location of cached properties...
r33277 def __init__(self, *paths):
super(repofilecache, self).__init__(*paths)
for path in paths:
_cachedfiles.add((path, 'plain'))
FUJIWARA Katsunori
localrepo: factor out base of filecache annotation class...
r33173 def join(self, obj, fname):
return obj.vfs.join(fname)
class storecache(_basefilecache):
Idan Kamara
filecache: refactor path join logic to a function...
r16198 """filecache for files in the store"""
FUJIWARA Katsunori
localrepo: store path and vfs location of cached properties...
r33277 def __init__(self, *paths):
super(storecache, self).__init__(*paths)
for path in paths:
_cachedfiles.add((path, ''))
Idan Kamara
filecache: refactor path join logic to a function...
r16198 def join(self, obj, fname):
return obj.sjoin(fname)
FUJIWARA Katsunori
localrepo: add isfilecached to check filecache-ed property is already cached...
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
localrepo: remove a couple of local type aliases...
r29104 class unfilteredpropertycache(util.propertycache):
Pierre-Yves David
clfilter: add a propertycache that must be unfiltered...
r18013 """propertycache that apply to unfiltered repo only"""
def __get__(self, repo, type=None):
Pierre-Yves David
repoview: have unfilteredpropertycache using the underlying cache...
r19846 unfi = repo.unfiltered()
if unfi is repo:
return super(unfilteredpropertycache, self).__get__(unfi)
return getattr(unfi, self.name)
Pierre-Yves David
clfilter: add a propertycache that must be unfiltered...
r18013
Augie Fackler
localrepo: remove a couple of local type aliases...
r29104 class filteredpropertycache(util.propertycache):
Pierre-Yves David
clfilter: add a propertycache that must be unfiltered...
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
spelling: fix some minor issues found by spell checker
r18644 """check if a repo has an unfilteredpropertycache value for <name>"""
Pierre-Yves David
clfilter: add a propertycache that must be unfiltered...
r18013 return name in vars(repo.unfiltered())
Pierre-Yves David
clfilter: rename `unfilteredmeth` to `unfilteredmethod`...
r18016 def unfilteredmethod(orig):
Pierre-Yves David
clfilter: introduce an `unfilteredmethod` decorator...
r17994 """decorate method that always need to be run on unfiltered version"""
def wrapper(repo, *args, **kwargs):
return orig(repo.unfiltered(), *args, **kwargs)
return wrapper
Martin von Zweigbergk
cleanup: use set literals...
r32291 moderncaps = {'lookup', 'branchmap', 'pushkey', 'known', 'getbundle',
'unbundle'}
legacycaps = moderncaps.union({'changegroupsubset'})
Peter Arrenbrecht
peer: introduce real peer classes...
r17192
Gregory Szorc
interfaceutil: module to stub out zope.interface...
r37828 @interfaceutil.implementer(repository.ipeercommandexecutor)
Gregory Szorc
wireproto: implement command executor interface for version 1 peers...
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:
raise error.ProgrammingError('callcommand() cannot be used after '
'sendcommands()')
if self._closed:
raise error.ProgrammingError('callcommand() cannot be used after '
'close()')
# 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
localrepo: add some overlooked strkwargs love for py3...
r37688 result = fn(**pycompat.strkwargs(args))
Gregory Szorc
wireproto: implement command executor interface for version 1 peers...
r37648 except Exception:
Augie Fackler
py3: paper over differences in future exception handling...
r37687 pycompat.future_set_exception_info(f, sys.exc_info()[1:])
Gregory Szorc
wireproto: implement command executor interface for version 1 peers...
r37648 else:
f.set_result(result)
return f
def sendcommands(self):
self._sent = True
def close(self):
self._closed = True
Gregory Szorc
interfaceutil: module to stub out zope.interface...
r37828 @interfaceutil.implementer(repository.ipeercommands)
Gregory Szorc
localrepo: use peer interfaces...
r33802 class localpeer(repository.peer):
Peter Arrenbrecht
peer: introduce real peer classes...
r17192 '''peer for a local repo; reflects only the most recent API'''
Pierre-Yves David
localrepo: don't use mutable default argument value...
r31412 def __init__(self, repo, caps=None):
Gregory Szorc
localrepo: use peer interfaces...
r33802 super(localpeer, self).__init__()
Pierre-Yves David
localrepo: don't use mutable default argument value...
r31412 if caps is None:
caps = moderncaps.copy()
Kevin Bullock
filtering: rename filters to their antonyms...
r18382 self._repo = repo.filtered('served')
Gregory Szorc
peer: make ui an attribute...
r37337 self.ui = repo.ui
Peter Arrenbrecht
peer: introduce real peer classes...
r17192 self._caps = repo._restrictcapabilities(caps)
Gregory Szorc
localrepo: use peer interfaces...
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
peer: introduce real peer classes...
r17192 def close(self):
self._repo.close()
Gregory Szorc
localrepo: use peer interfaces...
r33802 # End of _basepeer interface.
Peter Arrenbrecht
peer: introduce real peer classes...
r17192
Gregory Szorc
localrepo: use peer interfaces...
r33802 # Begin of _basewirecommands interface.
Peter Arrenbrecht
peer: introduce real peer classes...
r17192
def branchmap(self):
Pierre-Yves David
clfilter: drop extra filtering in localpeer...
r18279 return self._repo.branchmap()
Peter Arrenbrecht
peer: introduce real peer classes...
r17192
Gregory Szorc
localrepo: use peer interfaces...
r33802 def capabilities(self):
return self._caps
Peter Arrenbrecht
peer: introduce real peer classes...
r17192
Gregory Szorc
wireproto: properly call clonebundles command...
r37667 def clonebundles(self):
return self._repo.tryread('clonebundles.manifest')
Gregory Szorc
localrepo: use peer interfaces...
r33802 def debugwireargs(self, one, two, three=None, four=None, five=None):
"""Used to test argument passing over the wire"""
Pulkit Goyal
py3: use pycompat.bytestr() to convert None to bytes...
r36572 return "%s %s %s %s %s" % (one, two, pycompat.bytestr(three),
pycompat.bytestr(four),
pycompat.bytestr(five))
Peter Arrenbrecht
peer: introduce real peer classes...
r17192
Pierre-Yves David
localpeer: propagate bundlecaps in getbundle call...
r20953 def getbundle(self, source, heads=None, common=None, bundlecaps=None,
Martin von Zweigbergk
localrepo.getbundle: drop unused 'format' argument...
r24639 **kwargs):
Gregory Szorc
exchange: refactor APIs to obtain bundle data (API)...
r30187 chunks = exchange.getbundlechunks(self._repo, source, heads=heads,
common=common, bundlecaps=bundlecaps,
Gregory Szorc
exchange: return bundle info from getbundlechunks() (API)...
r35803 **kwargs)[1]
Gregory Szorc
exchange: refactor APIs to obtain bundle data (API)...
r30187 cb = util.chunkbuffer(chunks)
Martin von Zweigbergk
localrepo: reuse exchange.bundle2requested()...
r32149 if exchange.bundle2requested(bundlecaps):
Pierre-Yves David
bundle2: return a stream from exchange.getbundle...
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
exchange: refactor APIs to obtain bundle data (API)...
r30187 return bundle2.getunbundler(self.ui, cb)
else:
return changegroup.getunbundler('01', cb, None)
Peter Arrenbrecht
peer: introduce real peer classes...
r17192
Gregory Szorc
localrepo: use peer interfaces...
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):
raise error.Abort(_('cannot perform stream clone against local '
'peer'))
Peter Arrenbrecht
peer: introduce real peer classes...
r17192
Gregory Szorc
wireproto: use command executor for unbundle...
r37664 def unbundle(self, bundle, heads, url):
Pierre-Yves David
localrepo: add unbundle support...
r20969 """apply a bundle on a repo
This function handles the repo locking itself."""
try:
Pierre-Yves David
bundle2: add on more layer of exception catching in localrepo.unbundle...
r24798 try:
Gregory Szorc
wireproto: use command executor for unbundle...
r37664 bundle = exchange.readbundle(self.ui, bundle, None)
ret = exchange.unbundle(self._repo, bundle, heads, 'push', url)
Pierre-Yves David
bundle2: add on more layer of exception catching in localrepo.unbundle...
r24798 if util.safehasattr(ret, 'getchunks'):
# 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
global: mass rewrite to use modern exception syntax...
r25660 except Exception as exc:
Pierre-Yves David
bundle2-localpeer: properly propagate the server output on error (issue4594)...
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
bundle2: add on more layer of exception catching in localrepo.unbundle...
r24798 raise
Gregory Szorc
global: mass rewrite to use modern exception syntax...
r25660 except error.PushRaced as exc:
Augie Fackler
py3: hunt down str(exception) instances and use util.forcebytestr...
r36440 raise error.ResponseError(_('push failed:'),
Yuya Nishihara
stringutil: bulk-replace call sites to point to new module...
r37102 stringutil.forcebytestr(exc))
Pierre-Yves David
localrepo: add unbundle support...
r20969
Gregory Szorc
localrepo: use peer interfaces...
r33802 # End of _basewirecommands interface.
Peter Arrenbrecht
peer: introduce real peer classes...
r17192
Gregory Szorc
localrepo: use peer interfaces...
r33802 # Begin of peer interface.
Peter Arrenbrecht
peer: introduce real peer classes...
r17192
Gregory Szorc
wireproto: implement command executor interface for version 1 peers...
r37648 def commandexecutor(self):
return localcommandexecutor(self)
Gregory Szorc
localrepo: use peer interfaces...
r33802 # End of peer interface.
Gregory Szorc
interfaceutil: module to stub out zope.interface...
r37828 @interfaceutil.implementer(repository.ipeerlegacycommands)
Gregory Szorc
wireproto: convert legacy commands to command executor...
r37653 class locallegacypeer(localpeer):
Peter Arrenbrecht
peer: introduce real peer classes...
r17192 '''peer extension which implements legacy methods too; used for tests with
restricted capabilities'''
def __init__(self, repo):
Gregory Szorc
localrepo: use peer interfaces...
r33802 super(locallegacypeer, self).__init__(repo, caps=legacycaps)
# Begin of baselegacywirecommands interface.
def between(self, pairs):
return self._repo.between(pairs)
Peter Arrenbrecht
peer: introduce real peer classes...
r17192
def branches(self, nodes):
return self._repo.branches(nodes)
Gregory Szorc
wireproto: convert legacy commands to command executor...
r37653 def changegroup(self, nodes, source):
outgoing = discovery.outgoing(self._repo, missingroots=nodes,
Durham Goode
changegroup: replace changegroup with makechangegroup...
r34102 missingheads=self._repo.heads())
return changegroup.makechangegroup(self._repo, outgoing, '01', source)
Peter Arrenbrecht
peer: introduce real peer classes...
r17192
def changegroupsubset(self, bases, heads, source):
Durham Goode
changegroup: replace changegroupsubset with makechangegroup...
r34099 outgoing = discovery.outgoing(self._repo, missingroots=bases,
missingheads=heads)
return changegroup.makechangegroup(self._repo, outgoing, '01', source)
Peter Arrenbrecht
peer: introduce real peer classes...
r17192
Gregory Szorc
localrepo: use peer interfaces...
r33802 # End of baselegacywirecommands interface.
Gregory Szorc
revlog: skeleton support for version 2 revlogs...
r32697 # Increment the sub-version when the revlog v2 format changes to lock out old
# clients.
Gregory Szorc
revlog: always enable generaldelta on version 2 revlogs...
r41238 REVLOGV2_REQUIREMENT = 'exp-revlogv2.1'
Gregory Szorc
revlog: skeleton support for version 2 revlogs...
r32697
Paul Morelle
sparse-revlog: new requirement enabled with format.sparse-revlog...
r38739 # A repository with the sparserevlog feature will have delta chains that
# can spread over a larger span. Sparse reading cuts these large spans into
# pieces, so that each piece isn't too big.
# Without the sparserevlog capability, reading from the repository could use
# huge amounts of memory, because the whole span would be read at once,
# including all the intermediate revisions that aren't pertinent for the chain.
# This is why once a repository has enabled sparse-read, it becomes required.
SPARSEREVLOG_REQUIREMENT = 'sparserevlog'
Gregory Szorc
localrepo: move featuresetupfuncs out of localrepository class (API)...
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()
Gregory Szorc
localrepo: copy ui in makelocalrepository()...
r39725 def makelocalrepository(baseui, path, intents=None):
Gregory Szorc
localrepo: create new function for instantiating a local repo object...
r39723 """Create a local repository object.
Given arguments needed to construct a local repository, this function
Gregory Szorc
localrepo: iteratively derive local repository type...
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
localrepo: create new function for instantiating a local repo object...
r39723
The returned object conforms to the ``repository.completelocalrepository``
interface.
Gregory Szorc
localrepo: iteratively derive local repository type...
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
localrepo: create new function for instantiating a local repo object...
r39723 """
Gregory Szorc
localrepo: copy ui in makelocalrepository()...
r39725 ui = baseui.copy()
# Prevent copying repo configuration.
ui.copy = baseui.copy
Gregory Szorc
localrepo: move some vfs initialization out of __init__...
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)
Gregory Szorc
localrepo: check for .hg/ directory in makelocalrepository()...
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
raise error.RepoError(_(b'repository %s not found') % path)
Gregory Szorc
localrepo: read requirements file in makelocalrepository()...
r39728 # .hg/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(hgvfs.read(b'requires').splitlines())
except IOError as e:
if e.errno != errno.ENOENT:
raise
requirements = set()
Gregory Szorc
localrepo: load extensions in makelocalrepository()...
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.
Gregory Szorc
localrepo: extract loading of hgrc files to standalone function...
r40571 if loadhgrc(ui, wdirvfs, hgvfs, requirements):
Gregory Szorc
localrepo: automatically load lfs extension when required (BC)...
r39888 afterhgrcload(ui, wdirvfs, hgvfs, requirements)
Gregory Szorc
localrepo: load extensions in makelocalrepository()...
r39726 extensions.loadall(ui)
Yuya Nishihara
extensions: add "uipopulate" hook, called per instance, not per process...
r40760 extensions.populateui(ui)
Gregory Szorc
localrepo: load extensions in makelocalrepository()...
r39726
Gregory Szorc
localrepo: iteratively derive local repository type...
r39800 # Set of module names of extensions loaded for this repository.
extensionmodulenames = {m.__name__ for n, m in extensions.extensions(ui)}
Gregory Szorc
localrepo: validate supported requirements in makelocalrepository()...
r39729 supportedrequirements = gathersupportedrequirements(ui)
Gregory Szorc
localrepo: move requirements reasonability testing to own function...
r39731
# We first validate the requirements are known.
Gregory Szorc
localrepo: validate supported requirements in makelocalrepository()...
r39729 ensurerequirementsrecognized(requirements, supportedrequirements)
Gregory Szorc
localrepo: move requirements reasonability testing to own function...
r39731 # Then we validate that the known set is reasonable to use together.
ensurerequirementscompatible(ui, requirements)
Gregory Szorc
localrepo: document and test bug around opening shared repos...
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
localrepo: validate supported requirements in makelocalrepository()...
r39729 # At this point, we know we should be capable of opening the repository.
# Now get on with doing that.
Gregory Szorc
localrepo: define "features" on repository instances (API)...
r39886 features = set()
Gregory Szorc
localrepo: resolve store and cachevfs in makelocalrepository()...
r39733 # The "store" part of the repository holds versioned data. How it is
# accessed is determined by various requirements. 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``.
if b'shared' in requirements or b'relshared' in requirements:
sharedpath = hgvfs.read(b'sharedpath').rstrip(b'\n')
if b'relshared' in requirements:
sharedpath = hgvfs.join(sharedpath)
sharedvfs = vfsmod.vfs(sharedpath, realpath=True)
if not sharedvfs.exists():
raise error.RepoError(_(b'.hg/sharedpath points to nonexistent '
b'directory %s') % sharedvfs.base)
Gregory Szorc
localrepo: define "features" on repository instances (API)...
r39886 features.add(repository.REPO_FEATURE_SHARED_STORAGE)
Gregory Szorc
localrepo: resolve store and cachevfs in makelocalrepository()...
r39733 storebasepath = sharedvfs.base
cachepath = sharedvfs.join(b'cache')
else:
storebasepath = hgvfs.base
cachepath = hgvfs.join(b'cache')
Boris Feld
repo: add a `wcachevfs` to access the `.hg/wcache/` directory...
r40826 wcachepath = hgvfs.join(b'wcache')
Gregory Szorc
localrepo: resolve store and cachevfs in makelocalrepository()...
r39733
# The store has changed over time and the exact layout is dictated by
# requirements. The store interface abstracts differences across all
# of them.
Gregory Szorc
localrepo: move store() from store module...
r39734 store = makestore(requirements, storebasepath,
lambda base: vfsmod.vfs(base, cacheaudited=True))
Gregory Szorc
localrepo: resolve store and cachevfs in makelocalrepository()...
r39733 hgvfs.createmode = store.createmode
Gregory Szorc
localrepo: extract resolving of opener options to standalone functions...
r39736 storevfs = store.vfs
Gregory Szorc
localrepo: define "features" on repository instances (API)...
r39886 storevfs.options = resolvestorevfsoptions(ui, requirements, features)
Gregory Szorc
localrepo: extract resolving of opener options to standalone functions...
r39736
Gregory Szorc
localrepo: resolve store and cachevfs in makelocalrepository()...
r39733 # The cache vfs is used to manage cache files.
cachevfs = vfsmod.vfs(cachepath, cacheaudited=True)
cachevfs.createmode = store.createmode
Boris Feld
repo: add a `wcachevfs` to access the `.hg/wcache/` directory...
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
localrepo: resolve store and cachevfs in makelocalrepository()...
r39733
Gregory Szorc
localrepo: iteratively derive local repository type...
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.
Gregory Szorc
localrepo: capture repo interface factory functions as lambas...
r40030 typ = fn()(ui=ui,
Gregory Szorc
localrepo: iteratively derive local repository type...
r39800 intents=intents,
requirements=requirements,
Gregory Szorc
localrepo: define "features" on repository instances (API)...
r39886 features=features,
Gregory Szorc
localrepo: iteratively derive local repository type...
r39800 wdirvfs=wdirvfs,
hgvfs=hgvfs,
store=store,
storevfs=storevfs,
storeoptions=storevfs.options,
cachevfs=cachevfs,
Boris Feld
repo: add a `wcachevfs` to access the `.hg/wcache/` directory...
r40826 wcachevfs=wcachevfs,
Gregory Szorc
localrepo: iteratively derive local repository type...
r39800 extensionmodulenames=extensionmodulenames,
extrastate=extrastate,
baseclasses=bases)
if not isinstance(typ, type):
raise error.ProgrammingError('unable to construct type for %s' %
iface)
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.
name = pycompat.sysstr(b'derivedrepo:%s<%s>' % (
wdirvfs.base,
b','.join(sorted(requirements))))
cls = type(name, tuple(bases), {})
return cls(
Gregory Szorc
localrepo: copy ui in makelocalrepository()...
r39725 baseui=baseui,
ui=ui,
origroot=path,
Gregory Szorc
localrepo: move some vfs initialization out of __init__...
r39724 wdirvfs=wdirvfs,
hgvfs=hgvfs,
Gregory Szorc
localrepo: read requirements file in makelocalrepository()...
r39728 requirements=requirements,
Gregory Szorc
localrepo: validate supported requirements in makelocalrepository()...
r39729 supportedrequirements=supportedrequirements,
Gregory Szorc
localrepo: resolve store and cachevfs in makelocalrepository()...
r39733 sharedpath=storebasepath,
store=store,
cachevfs=cachevfs,
Boris Feld
repo: add a `wcachevfs` to access the `.hg/wcache/` directory...
r40826 wcachevfs=wcachevfs,
Gregory Szorc
localrepo: define "features" on repository instances (API)...
r39886 features=features,
Gregory Szorc
localrepo: move some vfs initialization out of __init__...
r39724 intents=intents)
Gregory Szorc
localrepo: create new function for instantiating a local repo object...
r39723
Gregory Szorc
localrepo: extract loading of hgrc files to standalone function...
r40571 def loadhgrc(ui, wdirvfs, hgvfs, requirements):
"""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.
"""
try:
ui.readconfig(hgvfs.join(b'hgrc'), root=wdirvfs.base)
return True
except IOError:
return False
Gregory Szorc
localrepo: automatically load lfs extension when required (BC)...
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 = {
Gregory Szorc
largefiles: automatically load largefiles extension when required (BC)...
r39890 b'largefiles': [b'largefiles'],
Gregory Szorc
localrepo: automatically load lfs extension when required (BC)...
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):
ui.setconfig(b'extensions', name, b'', source='autoload')
Gregory Szorc
localrepo: validate supported requirements in makelocalrepository()...
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]
if engine.revlogheader():
supported.add(b'exp-compression-%s' % name)
return supported
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(
_(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
localrepo: move requirements reasonability testing to own function...
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.
"""
if b'exp-sparse' in requirements and not sparse.enabled:
raise error.RepoError(_(b'repository is using sparse feature but '
b'sparse is not enabled; enable the '
b'"sparse" extensions to access'))
Gregory Szorc
localrepo: move store() from store module...
r39734 def makestore(requirements, path, vfstype):
"""Construct a storage object for a repository."""
if b'store' in requirements:
if b'fncache' in requirements:
return storemod.fncachestore(path, vfstype,
b'dotencode' in requirements)
return storemod.encodedstore(path, vfstype)
return storemod.basicstore(path, vfstype)
Gregory Szorc
localrepo: define "features" on repository instances (API)...
r39886 def resolvestorevfsoptions(ui, requirements, features):
Gregory Szorc
localrepo: extract resolving of opener options to standalone functions...
r39736 """Resolve the options to pass to the store vfs opener.
The returned dict is used to influence behavior of the storage layer.
"""
options = {}
if b'treemanifest' in requirements:
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.
if b'revlogv1' in requirements or REVLOGV2_REQUIREMENT in requirements:
Gregory Szorc
localrepo: define "features" on repository instances (API)...
r39886 options.update(resolverevlogstorevfsoptions(ui, requirements, features))
Gregory Szorc
localrepo: extract resolving of opener options to standalone functions...
r39736
return options
Gregory Szorc
localrepo: define "features" on repository instances (API)...
r39886 def resolverevlogstorevfsoptions(ui, requirements, features):
Gregory Szorc
localrepo: extract resolving of opener options to standalone functions...
r39736 """Resolve opener options specific to revlogs."""
options = {}
Matt Harbison
revlog: allow flag processors to be applied via store options...
r40303 options[b'flagprocessors'] = {}
Gregory Szorc
localrepo: extract resolving of opener options to standalone functions...
r39736
if b'revlogv1' in requirements:
options[b'revlogv1'] = True
if REVLOGV2_REQUIREMENT in requirements:
options[b'revlogv2'] = True
if b'generaldelta' in requirements:
options[b'generaldelta'] = True
# experimental config: format.chunkcachesize
chunkcachesize = ui.configint(b'format', b'chunkcachesize')
if chunkcachesize is not None:
options[b'chunkcachesize'] = chunkcachesize
deltabothparents = ui.configbool(b'storage',
b'revlog.optimize-delta-parent-choice')
options[b'deltabothparents'] = deltabothparents
options[b'lazydeltabase'] = not scmutil.gddeltaconfig(ui)
chainspan = ui.configbytes(b'experimental', b'maxdeltachainspan')
if 0 <= chainspan:
options[b'maxdeltachainspan'] = chainspan
Boris Feld
mmap: backed out changeset 875d2af8cb4e...
r41332 mmapindexthreshold = ui.configbytes(b'experimental',
b'mmapindexthreshold')
Gregory Szorc
localrepo: extract resolving of opener options to standalone functions...
r39736 if mmapindexthreshold is not None:
options[b'mmapindexthreshold'] = mmapindexthreshold
withsparseread = ui.configbool(b'experimental', b'sparse-read')
srdensitythres = float(ui.config(b'experimental',
b'sparse-read.density-threshold'))
srmingapsize = ui.configbytes(b'experimental',
b'sparse-read.min-gap-size')
options[b'with-sparse-read'] = withsparseread
options[b'sparse-read-density-threshold'] = srdensitythres
options[b'sparse-read-min-gap-size'] = srmingapsize
sparserevlog = SPARSEREVLOG_REQUIREMENT in requirements
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:
if r.startswith(b'exp-compression-'):
options[b'compengine'] = r[len(b'exp-compression-'):]
Gregory Szorc
localrepo: enable ellipsis flag on revlogs when repo is narrow...
r39806 if repository.NARROW_REQUIREMENT in requirements:
options[b'enableellipsis'] = True
Gregory Szorc
localrepo: extract resolving of opener options to standalone functions...
r39736 return options
Gregory Szorc
localrepo: iteratively derive local repository type...
r39800 def makemain(**kwargs):
"""Produce a type conforming to ``ilocalrepositorymain``."""
return localrepository
@interfaceutil.implementer(repository.ilocalrepositoryfilestorage)
class revlogfilestorage(object):
"""File storage when using revlogs."""
def file(self, path):
if path[0] == b'/':
path = path[1:]
return filelog.filelog(self.svfs, path)
Gregory Szorc
filelog: custom filelog to be used with narrow repos...
r39801 @interfaceutil.implementer(repository.ilocalrepositoryfilestorage)
class revlognarrowfilestorage(object):
"""File storage when using revlogs and narrow files."""
def file(self, path):
if path[0] == b'/':
path = path[1:]
Martin von Zweigbergk
narrow: extract repo property for store narrowmatcher...
r41266 return filelog.narrowfilelog(self.svfs, path, self._storenarrowmatch)
Gregory Szorc
filelog: custom filelog to be used with narrow repos...
r39801
Gregory Szorc
localrepo: define "features" on repository instances (API)...
r39886 def makefilestorage(requirements, features, **kwargs):
Gregory Szorc
localrepo: iteratively derive local repository type...
r39800 """Produce a type conforming to ``ilocalrepositoryfilestorage``."""
Gregory Szorc
localrepo: define "features" on repository instances (API)...
r39886 features.add(repository.REPO_FEATURE_REVLOG_FILE_STORAGE)
Gregory Szorc
localrepo: add repository feature when repo can be stream cloned...
r40063 features.add(repository.REPO_FEATURE_STREAM_CLONE)
Gregory Szorc
localrepo: define "features" on repository instances (API)...
r39886
Gregory Szorc
filelog: custom filelog to be used with narrow repos...
r39801 if repository.NARROW_REQUIREMENT in requirements:
return revlognarrowfilestorage
else:
return revlogfilestorage
Gregory Szorc
localrepo: iteratively derive local repository type...
r39800
# List of repository interfaces and factory functions for them. Each
# will be called in order during ``makelocalrepository()`` to iteratively
Gregory Szorc
localrepo: capture repo interface factory functions as lambas...
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
localrepo: iteratively derive local repository type...
r39800 REPO_INTERFACES = [
Gregory Szorc
localrepo: capture repo interface factory functions as lambas...
r40030 (repository.ilocalrepositorymain, lambda: makemain),
(repository.ilocalrepositoryfilestorage, lambda: makefilestorage),
Gregory Szorc
localrepo: iteratively derive local repository type...
r39800 ]
@interfaceutil.implementer(repository.ilocalrepositorymain)
Peter Arrenbrecht
peer: introduce real peer classes...
r17192 class localrepository(object):
Gregory Szorc
localrepo: iteratively derive local repository type...
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
peer: introduce real peer classes...
r17192
Augie Fackler
cleanup: say goodbye to manifestv2 format...
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
localrepo: reformat set literals...
r32315 supportedformats = {
'revlogv1',
'generaldelta',
'treemanifest',
Gregory Szorc
revlog: skeleton support for version 2 revlogs...
r32697 REVLOGV2_REQUIREMENT,
Paul Morelle
sparse-revlog: new requirement enabled with format.sparse-revlog...
r38739 SPARSEREVLOG_REQUIREMENT,
Gregory Szorc
localrepo: reformat set literals...
r32315 }
_basesupported = supportedformats | {
'store',
'fncache',
'shared',
'relshared',
'dotencode',
Gregory Szorc
sparse: add a requirement when a repository uses sparse (BC)...
r33556 'exp-sparse',
Boris Feld
phases: add a repository requirement about internal phase...
r39334 'internal-phase'
Gregory Szorc
localrepo: reformat set literals...
r32315 }
Bryan O'Sullivan
localrepo: make requirements and openerreqs mutable by subclasses...
r17137
Boris Feld
repovfs: add a ward to check if locks are properly taken...
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.
'hgrc',
'requires',
# XXX cache is a complicatged business someone
# should investigate this in depth at some point
'cache/',
# XXX shouldn't be dirstate covered by the wlock?
'dirstate',
# 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
'bisect.state',
}
Gregory Szorc
localrepo: read requirements file in makelocalrepository()...
r39728 def __init__(self, baseui, ui, origroot, wdirvfs, hgvfs, requirements,
Boris Feld
repo: add a `wcachevfs` to access the `.hg/wcache/` directory...
r40826 supportedrequirements, sharedpath, store, cachevfs, wcachevfs,
Gregory Szorc
localrepo: define "features" on repository instances (API)...
r39886 features, intents=None):
Gregory Szorc
localrepo: move repo creation logic out of localrepository.__init__ (API)...
r39584 """Create a new local repository instance.
Gregory Szorc
localrepo: move some vfs initialization out of __init__...
r39724 Most callers should use ``hg.repository()``, ``localrepo.instance()``,
or ``localrepo.makelocalrepository()`` for obtaining a new repository
object.
Arguments:
baseui
Gregory Szorc
localrepo: copy ui in makelocalrepository()...
r39725 ``ui.ui`` instance that ``ui`` argument was based off of.
ui
``ui.ui`` instance for use by the repository.
Gregory Szorc
localrepo: move some vfs initialization out of __init__...
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
localrepo: read requirements file in makelocalrepository()...
r39728 requirements
``set`` of bytestrings representing repository opening requirements.
Gregory Szorc
localrepo: validate supported requirements in makelocalrepository()...
r39729 supportedrequirements
``set`` of bytestrings representing repository requirements that we
know how to open. May be a supetset of ``requirements``.
Gregory Szorc
localrepo: resolve store and cachevfs in makelocalrepository()...
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
repo: add a `wcachevfs` to access the `.hg/wcache/` directory...
r40826 wcachevfs
``vfs.vfs`` used for cache files related to the working copy.
Gregory Szorc
localrepo: define "features" on repository instances (API)...
r39886 features
``set`` of bytestrings defining features/capabilities of this
instance.
Gregory Szorc
localrepo: move some vfs initialization out of __init__...
r39724 intents
``set`` of system strings indicating what this repo will be used
for.
Gregory Szorc
localrepo: move repo creation logic out of localrepository.__init__ (API)...
r39584 """
Gregory Szorc
localrepo: move some vfs initialization out of __init__...
r39724 self.baseui = baseui
Gregory Szorc
localrepo: copy ui in makelocalrepository()...
r39725 self.ui = ui
Gregory Szorc
localrepo: move some vfs initialization out of __init__...
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
localrepo: validate supported requirements in makelocalrepository()...
r39729 self.requirements = requirements
self.supported = supportedrequirements
Gregory Szorc
localrepo: resolve store and cachevfs in makelocalrepository()...
r39733 self.sharedpath = sharedpath
self.store = store
self.cachevfs = cachevfs
Boris Feld
repo: add a `wcachevfs` to access the `.hg/wcache/` directory...
r40826 self.wcachevfs = wcachevfs
Gregory Szorc
localrepo: define "features" on repository instances (API)...
r39886 self.features = features
Gregory Szorc
localrepo: move repo creation logic out of localrepository.__init__ (API)...
r39584
Gregory Szorc
localrepo: move filtername to __init__...
r32730 self.filtername = None
Gregory Szorc
localrepo: move some vfs initialization out of __init__...
r39724
Boris Feld
repovfs: add a ward to check if locks are properly taken...
r33436 if (self.ui.configbool('devel', 'all-warnings') or
self.ui.configbool('devel', 'check-locks')):
self.vfs.audit = self._getvfsward(self.vfs.audit)
Pierre-Yves David
phases: mechanism to allow extension to alter initial computation of phase...
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
Break apart hg.py...
r1089
Pierre-Yves David
color: initialize color for the localrepo ui...
r31111 color.setup(self.ui)
FUJIWARA Katsunori
localrepo: make supported features manageable in each repositories individually...
r19778
Adrian Buehlmann
introduce store classes...
r6840 self.spath = self.store.path
FUJIWARA Katsunori
localrepo: use "vfs" constructor/field for initialization around "store"
r17654 self.svfs = self.store.vfs
Adrian Buehlmann
introduce store classes...
r6840 self.sjoin = self.store.join
Boris Feld
reposvfs: add a ward to check if locks are properly taken...
r33437 if (self.ui.configbool('devel', 'all-warnings') or
self.ui.configbool('devel', 'check-locks')):
if util.safehasattr(self.svfs, 'vfs'): # this is filtervfs
self.svfs.vfs.audit = self._getsvfsward(self.svfs.vfs.audit)
else: # standard vfs
self.svfs.audit = self._getsvfsward(self.svfs.audit)
Benoit Boissinot
move code around
r3850
Siddharth Agarwal
localrepo: move dirstate validate function to class scope...
r26155 self._dirstatevalidatewarned = False
Greg Ward
localrepo: rename in-memory tag cache instance attributes (issue548)....
r9146
Pierre-Yves David
branchmap: enable caching for filtered version too...
r18189 self._branchcaches = {}
Durham Goode
revbranchcache: move out of branchmap onto localrepo...
r24373 self._revbranchcache = None
Gregory Szorc
localrepo: make filterpats private (API)...
r37155 self._filterpats = {}
Patrick Mezard
Register data filters in a localrepo instead of util...
r5966 self._datafilters = {}
Matt Mackall
Use a weakref for recursive transactions
r4916 self._transref = self._lockref = self._wlockref = None
mpm@selenic.com
Break apart hg.py...
r1089
Idan Kamara
localrepo: add a cache with stat info for files under .hg/
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
clfilter: add a cache on repo for set of revision to filter for a given set....
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
workingctx: add a way for extensions to run code at status fixup time...
r32814 # post-dirstate-status hooks
self._postdsstatus = []
Sean Farley
namespaces: add bookmarks to the names data structure...
r23558 # generic mapping between names and nodes
Ryan McElroy
namespaces: remove weakref; always pass in repo...
r23561 self.names = namespaces.namespaces()
Sean Farley
namespaces: add bookmarks to the names data structure...
r23558
Gregory Szorc
localrepo: add sparse caches...
r33302 # Key to signature value.
self._sparsesignaturecache = {}
# Signature to cached matcher instance.
self._sparsematchercache = {}
Boris Feld
repovfs: add a ward to check if locks are properly taken...
r33436 def _getvfsward(self, origfunc):
"""build a ward for self.vfs"""
rref = weakref.ref(self)
def checkvfs(path, mode=None):
ret = origfunc(path, mode=mode)
repo = rref()
if (repo is None
or not util.safehasattr(repo, '_wlockref')
or not util.safehasattr(repo, '_lockref')):
return
if mode in (None, 'r', 'rb'):
return
if path.startswith(repo.path):
# truncate name relative to the repository (.hg)
path = path[len(repo.path) + 1:]
Boris Feld
cachevfs: add a devel warning for cache access though 'vfs'...
r33538 if path.startswith('cache/'):
msg = 'accessing cache with vfs instead of cachevfs: "%s"'
Boris Feld
vfs: extract the audit path logic into a submethod...
r40785 repo.ui.develwarn(msg % path, stacklevel=3, config="cache-vfs")
Boris Feld
vfs: treat 'undo.' file the same as 'journal.' file...
r40782 if path.startswith('journal.') or path.startswith('undo.'):
Boris Feld
repovfs: add a ward to check if locks are properly taken...
r33436 # journal is covered by 'lock'
if repo._currentlock(repo._lockref) is None:
repo.ui.develwarn('write with no lock: "%s"' % path,
Boris Feld
vfs: extract the audit path logic into a submethod...
r40785 stacklevel=3, config='check-locks')
Boris Feld
repovfs: add a ward to check if locks are properly taken...
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
repo.ui.develwarn('write with no wlock: "%s"' % path,
Boris Feld
vfs: extract the audit path logic into a submethod...
r40785 stacklevel=3, config='check-locks')
Boris Feld
repovfs: add a ward to check if locks are properly taken...
r33436 return ret
return checkvfs
Boris Feld
reposvfs: add a ward to check if locks are properly taken...
r33437 def _getsvfsward(self, origfunc):
"""build a ward for self.svfs"""
rref = weakref.ref(self)
def checksvfs(path, mode=None):
ret = origfunc(path, mode=mode)
repo = rref()
if repo is None or not util.safehasattr(repo, '_lockref'):
return
if mode in (None, 'r', 'rb'):
return
if path.startswith(repo.sharedpath):
# truncate name relative to the repository (.hg)
path = path[len(repo.sharedpath) + 1:]
if repo._currentlock(repo._lockref) is None:
repo.ui.develwarn('write with no lock: "%s"' % path,
Boris Feld
vfs: extract the audit path logic into a submethod...
r40785 stacklevel=4)
Boris Feld
reposvfs: add a ward to check if locks are properly taken...
r33437 return ret
return checksvfs
Peter Arrenbrecht
peer: introduce real peer classes...
r17192 def close(self):
Durham Goode
revbranchcache: write cache even during read operations...
r24378 self._writecaches()
def _writecaches(self):
if self._revbranchcache:
self._revbranchcache.write()
Peter Arrenbrecht
peer: introduce real peer classes...
r17192
def _restrictcapabilities(self, caps):
Jun Wu
codemod: register core configitems using a script...
r33499 if self.ui.configbool('experimental', 'bundle2-advertise'):
Pierre-Yves David
bundle2: allow pulling changegroups using bundle2...
r20955 caps = set(caps)
Gregory Szorc
bundle2: specify what capabilities will be used for...
r35801 capsblob = bundle2.encodecaps(bundle2.getrepocaps(self,
role='client'))
timeless
pycompat: switch to util.urlreq/util.urlerr for py3 compat
r28883 caps.add('bundle2=' + urlreq.quote(capsblob))
Peter Arrenbrecht
peer: introduce real peer classes...
r17192 return caps
Sune Foldager
localrepo: factor out requirement application and write
r12295 def _writerequirements(self):
Drew Gottlieb
requires: move requires file writing func from localrepo to scmutil...
r24934 scmutil.writerequires(self.vfs, self.requirements)
Sune Foldager
localrepo: factor out requirement application and write
r12295
Yuya Nishihara
localrepo: do not cache auditor/nofsauditor which would make reference cycle...
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.
return pathutil.pathauditor(self.root, callback=self._checknested,
realfs=False, cached=True)
Martin Geisler
localrepo: add auditor attribute which knows about subrepos
r12162 def _checknested(self, path):
"""Determine if path is a legal nested repository."""
if not path.startswith(self.root):
return False
subpath = path[len(self.root) + 1:]
FUJIWARA Katsunori
windows: use normalized path to check repository nesting...
r15722 normsubpath = util.pconvert(subpath)
Martin Geisler
localrepo: add auditor attribute which knows about subrepos
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
localrepo: check nested repos against working directory...
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
localrepo: add auditor attribute which knows about subrepos
r12162 parts = util.splitpath(subpath)
while parts:
FUJIWARA Katsunori
windows: use normalized path to check repository nesting...
r15722 prefix = '/'.join(parts)
Martin Geisler
localrepo: add auditor attribute which knows about subrepos
r12162 if prefix in ctx.substate:
FUJIWARA Katsunori
windows: use normalized path to check repository nesting...
r15722 if prefix == normsubpath:
Martin Geisler
localrepo: add auditor attribute which knows about subrepos
r12162 return True
else:
sub = ctx.sub(prefix)
return sub.checknested(subpath[len(prefix) + 1:])
else:
parts.pop()
return False
Peter Arrenbrecht
peer: introduce real peer classes...
r17192 def peer(self):
return localpeer(self) # not cached to avoid reference cycle
Pierre-Yves David
clfilter: introduce an "unfiltered" method on localrepo...
r17993 def unfiltered(self):
"""Return unfiltered version of the repository
Mads Kiilerich
spelling: fix some minor issues found by spell checker
r18644 Intended to be overwritten by filtered repo."""
Pierre-Yves David
clfilter: introduce an "unfiltered" method on localrepo...
r17993 return self
Pulkit Goyal
repoview: add visibilityexceptions as an optional argument to repo.filtered()...
r35508 def filtered(self, name, visibilityexceptions=None):
Pierre-Yves David
clfilter: add actual repo filtering mechanism...
r18100 """Return a filtered version of a repository"""
Yuya Nishihara
repoview: extract a factory function of proxy class...
r35248 cls = repoview.newtype(self.unfiltered().__class__)
Pulkit Goyal
repoview: add visibilityexceptions as an optional argument to repo.filtered()...
r35508 return cls(self, name, visibilityexceptions)
Pierre-Yves David
clfilter: add actual repo filtering mechanism...
r18100
Augie Fackler
bmstore: add handling of the active bookmark...
r27698 @repofilecache('bookmarks', 'bookmarks.current')
Matt Mackall
bookmarks: move property methods into localrepo
r13355 def _bookmarks(self):
Augie Fackler
bookmarks: introduce a bmstore to manage bookmark persistence...
r17922 return bookmarks.bmstore(self)
Matt Mackall
bookmarks: move property methods into localrepo
r13355
Augie Fackler
bmstore: add handling of the active bookmark...
r27698 @property
Ryan McElroy
bookmarks: rename bookmarkcurrent to activebookmark (API)...
r24947 def _activebookmark(self):
Augie Fackler
bmstore: add handling of the active bookmark...
r27698 return self._bookmarks.active
Martin Geisler
localrepo: add auditor attribute which knows about subrepos
r12162
Joerg Sonnenberger
phases: drop the list with phase of each rev, always comput phase sets...
r35310 # _phasesets depend on changelog. what we need is to call
# _phasecache.invalidate() if '00changelog.i' was changed, but it
Yuya Nishihara
localrepo: recreate phasecache if changelog was modified (issue4855)...
r26405 # can't be easily expressed in filecache mechanism.
@storecache('phaseroots', '00changelog.i')
Patrick Mezard
phases: introduce phasecache...
r16657 def _phasecache(self):
return phases.phasecache(self, self._phasedefaults)
Pierre-Yves David
phases: add a cache allowing to know in which phase a changeset is
r15420
Pierre-Yves.David@ens-lyon.org
obsolete: introduction of obsolete markers...
r17070 @storecache('obsstore')
def obsstore(self):
Gregory Szorc
obsolete: move obsstore creation logic from localrepo...
r32729 return obsolete.makestore(self.ui, self)
Pierre-Yves.David@ens-lyon.org
obsolete: introduction of obsolete markers...
r17070
Idan Kamara
filecache: refactor path join logic to a function...
r16198 @storecache('00changelog.i')
Matt Mackall
localrepo: use propertycache
r8260 def changelog(self):
Gregory Szorc
changelog: load pending file directly...
r32292 return changelog.changelog(self.svfs,
trypending=txnutil.mayhavepending(self.root))
Matt Mackall
localrepo: use propertycache
r8260
Durham Goode
manifest: make manifestlog a storecache...
r30219 @storecache('00manifest.i')
Durham Goode
manifest: introduce manifestlog and manifestctx classes...
r29825 def manifestlog(self):
Gregory Szorc
localrepo: pass root manifest into manifestlog.__init__...
r39799 rootstore = manifest.manifestrevlog(self.svfs)
Martin von Zweigbergk
manifest: accept narrowmatch into constructor instead of getting from repo...
r41067 return manifest.manifestlog(self.svfs, self, rootstore,
Martin von Zweigbergk
narrow: extract repo property for store narrowmatcher...
r41266 self._storenarrowmatch)
Durham Goode
manifest: introduce manifestlog and manifestctx classes...
r29825
Pierre-Yves David
clfilter: ensure that filecache on localrepo is unfiltered...
r18014 @repofilecache('dirstate')
Matt Mackall
localrepo: use propertycache
r8260 def dirstate(self):
Kyle Lippincott
narrow: only wrap dirstate functions once, instead of per-reposetup...
r38142 return self._makedirstate()
def _makedirstate(self):
Kyle Lippincott
localrepo: add docstring to _makedirstate to make it less likely to be removed...
r38147 """Extension point for wrapping the dirstate per-repo."""
Gregory Szorc
dirstate: expose a sparse matcher on dirstate (API)...
r33373 sparsematchfn = lambda: sparse.matcher(self)
Siddharth Agarwal
localrepo: move dirstate validate function to class scope...
r26155 return dirstate.dirstate(self.vfs, self.ui, self.root,
Gregory Szorc
dirstate: expose a sparse matcher on dirstate (API)...
r33373 self._dirstatevalidate, sparsematchfn)
Matt Mackall
dirstate: warn on invalid parents rather than aborting...
r13032
Siddharth Agarwal
localrepo: move dirstate validate function to class scope...
r26155 def _dirstatevalidate(self, node):
try:
self.changelog.rev(node)
return node
except error.LookupError:
if not self._dirstatevalidatewarned:
self._dirstatevalidatewarned = True
self.ui.warn(_("warning: ignoring unknown"
" working parent %s!\n") % short(node))
return nullid
Vadim Gelfer
support hooks written in python....
r2155
Martin von Zweigbergk
narrow: move .hg/narrowspec to .hg/store/narrowspec (BC)...
r38908 @storecache(narrowspec.FILENAME)
Martin von Zweigbergk
narrow: move narrowmatch-related methods to localrepo...
r36489 def narrowpats(self):
"""matcher patterns for this repository's narrowspec
A tuple of (includes, excludes).
"""
Martin von Zweigbergk
narrow: remove hack to read narowspec from shared .hg directory...
r39794 return narrowspec.load(self)
Martin von Zweigbergk
narrow: move narrowmatch-related methods to localrepo...
r36489
Martin von Zweigbergk
narrow: move .hg/narrowspec to .hg/store/narrowspec (BC)...
r38908 @storecache(narrowspec.FILENAME)
Martin von Zweigbergk
narrow: extract repo property for store narrowmatcher...
r41266 def _storenarrowmatch(self):
if repository.NARROW_REQUIREMENT not in self.requirements:
return matchmod.always(self.root, '')
include, exclude = self.narrowpats
return narrowspec.match(self.root, include=include, exclude=exclude)
@storecache(narrowspec.FILENAME)
Martin von Zweigbergk
narrow: move narrowmatch-related methods to localrepo...
r36489 def _narrowmatch(self):
Martin von Zweigbergk
narrow: move requirement constant from changegroup to repository...
r38871 if repository.NARROW_REQUIREMENT not in self.requirements:
Martin von Zweigbergk
narrow: move narrowmatch-related methods to localrepo...
r36489 return matchmod.always(self.root, '')
Martin von Zweigbergk
narrow: detect if narrowspec was changed in a different share...
r41072 narrowspec.checkworkingcopynarrowspec(self)
Martin von Zweigbergk
narrow: move narrowmatch-related methods to localrepo...
r36489 include, exclude = self.narrowpats
return narrowspec.match(self.root, include=include, exclude=exclude)
Martin von Zweigbergk
narrow: allow repo.narrowmatch(match) to include exact matches from "match"...
r40122 def narrowmatch(self, match=None, includeexact=False):
Martin von Zweigbergk
localrepo: allow narrowmatch() to accept matcher to intersect with...
r40118 """matcher corresponding the the repo's narrowspec
If `match` is given, then that will be intersected with the narrow
matcher.
Martin von Zweigbergk
narrow: allow repo.narrowmatch(match) to include exact matches from "match"...
r40122
If `includeexact` is True, then any exact matches from `match` will
be included even if they're outside the narrowspec.
Martin von Zweigbergk
localrepo: allow narrowmatch() to accept matcher to intersect with...
r40118 """
if match:
Martin von Zweigbergk
narrow: allow repo.narrowmatch(match) to include exact matches from "match"...
r40122 if includeexact and not self._narrowmatch.always():
# do not exclude explicitly-specified paths so that they can
# be warned later on
em = matchmod.exact(match._root, match._cwd, match.files())
nm = matchmod.unionmatcher([self._narrowmatch, em])
return matchmod.intersectmatchers(match, nm)
Martin von Zweigbergk
localrepo: allow narrowmatch() to accept matcher to intersect with...
r40118 return matchmod.intersectmatchers(match, self._narrowmatch)
Martin von Zweigbergk
narrow: move narrowmatch-related methods to localrepo...
r36489 return self._narrowmatch
def setnarrowpats(self, newincludes, newexcludes):
Yuya Nishihara
narrow: remove hack to write narrowspec to shared .hg directory...
r39593 narrowspec.save(self, newincludes, newexcludes)
Martin von Zweigbergk
narrow: move narrowmatch-related methods to localrepo...
r36489 self.invalidate(clearfilecache=True)
Matt Mackall
use repo[changeid] to get a changectx
r6747 def __getitem__(self, changeid):
Yuya Nishihara
localrepo: map integer and hex wdir identifiers to workingctx...
r32658 if changeid is None:
Matt Mackall
use repo[changeid] to get a changectx
r6747 return context.workingctx(self)
Martin von Zweigbergk
context: move reuse of context object to repo.__getitem__ (API)...
r37191 if isinstance(changeid, context.basectx):
return changeid
Eric Sumner
localrepo.__getitem__: add slicing support...
r23630 if isinstance(changeid, slice):
Yuya Nishihara
localrepo: map integer and hex wdir identifiers to workingctx...
r32658 # wdirrev isn't contiguous so the slice shouldn't include it
Martin von Zweigbergk
context: reduce dependence of changectx constructor...
r39993 return [self[i]
Gregory Szorc
global: use pycompat.xrange()...
r38806 for i in pycompat.xrange(*changeid.indices(len(self)))
Eric Sumner
localrepo.__getitem__: add slicing support...
r23630 if i not in self.changelog.filteredrevs]
Yuya Nishihara
localrepo: map integer and hex wdir identifiers to workingctx...
r32658 try:
Martin von Zweigbergk
context: move logic from changectx.__init__ to localrepo.__getitem__ (API)...
r39994 if isinstance(changeid, int):
node = self.changelog.node(changeid)
rev = changeid
elif changeid == 'null':
node = nullid
rev = nullrev
elif changeid == 'tip':
node = self.changelog.tip()
rev = self.changelog.rev(node)
Martin von Zweigbergk
repo: move unfiltered-repo optimization to workingctx...
r39995 elif changeid == '.':
Martin von Zweigbergk
context: move logic from changectx.__init__ to localrepo.__getitem__ (API)...
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)
elif len(changeid) == 20:
try:
node = changeid
rev = self.changelog.rev(changeid)
except error.FilteredLookupError:
changeid = hex(changeid) # for the error message
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
if (self.local()
and changeid in self.unfiltered().dirstate.parents()):
msg = _("working directory has unknown parent '%s'!")
raise error.Abort(msg % short(changeid))
changeid = hex(changeid) # for the error message
Martin von Zweigbergk
repo: remove the last few "pass" statements in localrepo.__getitem__...
r40099 raise
Martin von Zweigbergk
context: move logic from changectx.__init__ to localrepo.__getitem__ (API)...
r39994
elif len(changeid) == 40:
Martin von Zweigbergk
repo: remove the last few "pass" statements in localrepo.__getitem__...
r40099 node = bin(changeid)
rev = self.changelog.rev(node)
Martin von Zweigbergk
context: move logic from changectx.__init__ to localrepo.__getitem__ (API)...
r39994 else:
raise error.ProgrammingError(
"unsupported changeid '%s' of type %s" %
(changeid, type(changeid)))
Martin von Zweigbergk
repo: create changectx in a single place in localrepo.__getitem__...
r40100 return context.changectx(self, rev, node)
Martin von Zweigbergk
context: move logic from changectx.__init__ to localrepo.__getitem__ (API)...
r39994 except (error.FilteredIndexError, error.FilteredLookupError):
raise error.FilteredRepoLookupError(_("filtered revision '%s'")
% pycompat.bytestr(changeid))
Martin von Zweigbergk
repo: remove the last few "pass" statements in localrepo.__getitem__...
r40099 except (IndexError, LookupError):
Augie Fackler
localrepo: ensure we properly %-format int in exception throw...
r40389 raise error.RepoLookupError(
_("unknown revision '%s'") % pycompat.bytestr(changeid))
Yuya Nishihara
localrepo: map integer and hex wdir identifiers to workingctx...
r32658 except error.WdirUnsupported:
return context.workingctx(self)
Matt Mackall
use repo[changeid] to get a changectx
r6747
Alexander Solovyov
localrepo: support 'rev in repo' syntax
r9924 def __contains__(self, changeid):
Yuya Nishihara
localrepo: document that __contains__() may raise LookupError
r32481 """True if the given changeid exists
Martin von Zweigbergk
revlog: use specialized exception for ambiguous prefix lookup...
r38877 error.AmbiguousPrefixLookupError is raised if an ambiguous node
specified.
Yuya Nishihara
localrepo: document that __contains__() may raise LookupError
r32481 """
Alexander Solovyov
localrepo: support 'rev in repo' syntax
r9924 try:
Yuya Nishihara
localrepo: extend "changeid in repo" to return True for workingctx revision...
r24320 self[changeid]
return True
Yuya Nishihara
context: translate FilteredIndex/LookupError at repo[changeid] (API)...
r37815 except error.RepoLookupError:
Alexander Solovyov
localrepo: support 'rev in repo' syntax
r9924 return False
Matt Mackall
add __len__ and __iter__ methods to repo and revlog
r6750 def __nonzero__(self):
return True
Gregory Szorc
py3: add __bool__ to every class defining __nonzero__...
r31476 __bool__ = __nonzero__
Matt Mackall
add __len__ and __iter__ methods to repo and revlog
r6750 def __len__(self):
Yuya Nishihara
localrepo: micro-optimize __len__() to bypass repoview...
r35754 # no need to pay the cost of repoview.changelog
unfi = self.unfiltered()
return len(unfi.changelog)
Matt Mackall
add __len__ and __iter__ methods to repo and revlog
r6750
def __iter__(self):
Pierre-Yves David
clfilter: remove usage of `range` in favor of iteration over changelog...
r17675 return iter(self.changelog)
Vadim Gelfer
support hooks written in python....
r2155
Matt Mackall
localrepo: add revs helper method
r15403 def revs(self, expr, *args):
Gregory Szorc
localrepo: improve docstring for revset methods...
r27071 '''Find revisions matching a revset.
The revset is specified as a string ``expr`` that may contain
Yuya Nishihara
revset: split language services to revsetlang module (API)...
r31024 %-formatting to escape certain types. See ``revsetlang.formatspec``.
Gregory Szorc
localrepo: improve docstring for revset methods...
r27071
Gregory Szorc
scmutil: improve documentation of revset APIs...
r29417 Revset aliases from the configuration are not expanded. To expand
Yuya Nishihara
scmutil: proxy revrange() through repo to break import cycles...
r31025 user aliases, consider calling ``scmutil.revrange()`` or
``repo.anyrevs([expr], user=True)``.
Gregory Szorc
scmutil: improve documentation of revset APIs...
r29417
Returns a revset.abstractsmartset, which is a list-like interface
Gregory Szorc
localrepo: improve docstring for revset methods...
r27071 that contains integer revisions.
'''
Boris Feld
revset: introduce an API that avoids `formatspec` input serialization...
r41258 tree = revsetlang.spectree(expr, *args)
return revset.makematcher(tree)(self)
Matt Mackall
localrepo: add revs helper method
r15403
Matt Mackall
localrepo: add set method to iterate over a given revset...
r14902 def set(self, expr, *args):
Gregory Szorc
localrepo: improve docstring for revset methods...
r27071 '''Find revisions matching a revset and emit changectx instances.
This is a convenience wrapper around ``revs()`` that iterates the
result and is a generator of changectx instances.
Gregory Szorc
scmutil: improve documentation of revset APIs...
r29417
Revset aliases from the configuration are not expanded. To expand
user aliases, consider calling ``scmutil.revrange()``.
Matt Mackall
localrepo: add set method to iterate over a given revset...
r14902 '''
Matt Mackall
localrepo: add revs helper method
r15403 for r in self.revs(expr, *args):
Matt Mackall
localrepo: add set method to iterate over a given revset...
r14902 yield self[r]
Jun Wu
revset: make repo.anyrevs accept customized alias override (API)...
r33336 def anyrevs(self, specs, user=False, localalias=None):
Yuya Nishihara
scmutil: proxy revrange() through repo to break import cycles...
r31025 '''Find revisions matching one of the given revsets.
Revset aliases from the configuration are not expanded by default. To
Jun Wu
revset: make repo.anyrevs accept customized alias override (API)...
r33336 expand user aliases, specify ``user=True``. To provide some local
definitions overriding user aliases, set ``localalias`` to
``{name: definitionstring}``.
Yuya Nishihara
scmutil: proxy revrange() through repo to break import cycles...
r31025 '''
if user:
Yuya Nishihara
revset: pass in lookup function instead of repo (API)...
r37692 m = revset.matchany(self.ui, specs,
lookup=revset.lookupfn(self),
Jun Wu
revset: make repo.anyrevs accept customized alias override (API)...
r33336 localalias=localalias)
Yuya Nishihara
scmutil: proxy revrange() through repo to break import cycles...
r31025 else:
Jun Wu
revset: make repo.anyrevs accept customized alias override (API)...
r33336 m = revset.matchany(None, specs, localalias=localalias)
Yuya Nishihara
scmutil: proxy revrange() through repo to break import cycles...
r31025 return m(self)
Vadim Gelfer
hooks: add url to changegroup, incoming, prechangegroup, pretxnchangegroup hooks...
r2673 def url(self):
return 'file:' + self.root
Vadim Gelfer
make hook code nicer....
r1718 def hook(self, name, throw=False, **args):
Gregory Szorc
localrepo: document localrepo.hook()
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
hooks: separate hook code into a separate module
r4622 return hook.hook(self.ui, self, name, throw, **args)
mpm@selenic.com
Break apart hg.py...
r1089
Pierre-Yves David
clfilter: add a propertycache that must be unfiltered...
r18013 @filteredpropertycache
Idan Kamara
localrepo: unify tag related info into a tagscache class
r14936 def _tagscache(self):
Brodie Rao
cleanup: eradicate long lines
r16683 '''Returns a tagscache object that contains various tags related
caches.'''
Idan Kamara
localrepo: unify tag related info into a tagscache class
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
Break apart hg.py...
r1089 def tags(self):
'''return a mapping of tag to node'''
Matt Mackall
tags: defer tag validation until repo.tags() is called...
r16371 t = {}
Pierre-Yves David
clfilter: do not use tags cache if there are filtered changesets...
r17715 if self.changelog.filteredrevs:
tags, tt = self._findtags()
else:
tags = self._tagscache.tags
Boris Feld
tags: cache `repo.changelog` access when checking tags nodes...
r40776 rev = self.changelog.rev
Pierre-Yves David
clfilter: do not use tags cache if there are filtered changesets...
r17715 for k, v in tags.iteritems():
Matt Mackall
tags: defer tag validation until repo.tags() is called...
r16371 try:
# ignore tags to unknown nodes
Boris Feld
tags: cache `repo.changelog` access when checking tags nodes...
r40776 rev(v)
Matt Mackall
tags: defer tag validation until repo.tags() is called...
r16371 t[k] = v
Bryan O'Sullivan
parsers: strictly check for 20-byte hashes where they're required
r16679 except (error.LookupError, ValueError):
Matt Mackall
tags: defer tag validation until repo.tags() is called...
r16371 pass
return t
Matt Mackall
Refactor tags code to prepare for improving the algorithm
r4210
Greg Ward
localrepo: factor _findtags() out of tags() (issue548)....
r9145 def _findtags(self):
'''Do the hard work of finding tags. Return a pair of dicts
(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
duration of the localrepo object.'''
# 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
Refactor tags code to prepare for improving the algorithm
r4210
mpm@selenic.com
Break apart hg.py...
r1089
Pierre-Yves David
tags: only return 'alltags' in 'findglobaltags'...
r31709 # map tag name to (node, hist)
alltags = tagsmod.findglobaltags(self.ui, self)
# map tag name to tag type
tagtypes = dict((tag, 'global') for tag in alltags)
Pierre-Yves David
tags: do not feed dictionaries to 'findglobaltags'...
r31706
Benoit Boissinot
style: use consistent variable names (*mod) with imports which would shadow
r10651 tagsmod.readlocaltags(self.ui, self, alltags, tagtypes)
Osku Salerma
Properly check tag's existence as a local/global tag when removing it.
r5657
Greg Ward
tags: support 'instant' tag retrieval (issue548)...
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
localrepo: factor _findtags() out of tags() (issue548)....
r9145 tags = {}
Greg Ward
localrepo: improve readability of _findtags(), readtags() (issue548)....
r9147 for (name, (node, hist)) in alltags.iteritems():
if node != nullid:
Matt Mackall
tags: defer tag validation until repo.tags() is called...
r16371 tags[encoding.tolocal(name)] = node
Greg Ward
localrepo: factor _findtags() out of tags() (issue548)....
r9145 tags['tip'] = self.changelog.tip()
Greg Ward
tags: support 'instant' tag retrieval (issue548)...
r9152 tagtypes = dict([(encoding.tolocal(name), value)
for (name, value) in tagtypes.iteritems()])
Greg Ward
localrepo: factor _findtags() out of tags() (issue548)....
r9145 return (tags, tagtypes)
mpm@selenic.com
Break apart hg.py...
r1089
Osku Salerma
Properly check tag's existence as a local/global tag when removing it.
r5657 def tagtype(self, tagname):
'''
return the type of the given tag. result can be:
'local' : a local tag
'global' : a global tag
None : tag does not exist
'''
Idan Kamara
localrepo: unify tag related info into a tagscache class
r14936 return self._tagscache.tagtypes.get(tagname)
Osku Salerma
Properly check tag's existence as a local/global tag when removing it.
r5657
mpm@selenic.com
Break apart hg.py...
r1089 def tagslist(self):
'''return a list of tags ordered by revision'''
Idan Kamara
localrepo: unify tag related info into a tagscache class
r14936 if not self._tagscache.tagslist:
l = []
for t, n in self.tags().iteritems():
Mads Kiilerich
cleanup: fix some list comprehension redefinitions of existing vars...
r22201 l.append((self.changelog.rev(n), t, n))
Idan Kamara
localrepo: unify tag related info into a tagscache class
r14936 self._tagscache.tagslist = [(t, n) for r, t, n in sorted(l)]
return self._tagscache.tagslist
mpm@selenic.com
Break apart hg.py...
r1089
def nodetags(self, node):
'''return the tags associated with a node'''
Idan Kamara
localrepo: unify tag related info into a tagscache class
r14936 if not self._tagscache.nodetagscache:
nodetagscache = {}
Matt Mackall
tags: defer tag validation until repo.tags() is called...
r16371 for t, n in self._tagscache.tags.iteritems():
Idan Kamara
localrepo: unify tag related info into a tagscache class
r14936 nodetagscache.setdefault(n, []).append(t)
for tags in nodetagscache.itervalues():
Eric Eisner
tags: return tags in sorted order...
r11047 tags.sort()
Idan Kamara
localrepo: unify tag related info into a tagscache class
r14936 self._tagscache.nodetagscache = nodetagscache
return self._tagscache.nodetagscache.get(node, [])
mpm@selenic.com
Break apart hg.py...
r1089
David Soria Parra
context: add method to return all bookmarks pointing to a node
r13384 def nodebookmarks(self, node):
Augie Fackler
localrepo: document nodebookmarks
r27166 """return the list of bookmarks pointing to the specified node"""
Yuya Nishihara
bookmarks: extract function that looks up bookmark names by node
r37867 return self._bookmarks.names(node)
David Soria Parra
context: add method to return all bookmarks pointing to a node
r13384
Georg Brandl
localrepo: introduce method for explicit branch cache update...
r12066 def branchmap(self):
Mads Kiilerich
help: branch names primarily denote the tipmost unclosed branch head...
r20245 '''returns a dictionary {branch: [branchheads]} with branchheads
ordered by increasing revision number'''
Pierre-Yves David
branchmap: enable caching for filtered version too...
r18189 branchmap.updatecache(self)
return self._branchcaches[self.filtername]
Pierre-Yves David
clfilter: do not use branchmap cache if there are filtered changesets...
r17714
Durham Goode
revbranchcache: move out of branchmap onto localrepo...
r24373 @unfilteredmethod
def revbranchcache(self):
if not self._revbranchcache:
self._revbranchcache = branchmap.revbranchcache(self.unfiltered())
return self._revbranchcache
Sean Farley
localrepo: add ignoremissing parameter to branchtip...
r23775 def branchtip(self, branch, ignoremissing=False):
'''return the tip node for a given branch
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).
'''
Brodie Rao
localrepo: refactor repo.branchtip() to use repo.branchmap().branchtip()
r20187 try:
return self.branchmap().branchtip(branch)
except KeyError:
Sean Farley
localrepo: add ignoremissing parameter to branchtip...
r23775 if not ignoremissing:
raise error.RepoLookupError(_("unknown branch '%s'") % branch)
else:
pass
Brodie Rao
localrepo: add branchtip() method for faster single-branch lookups...
r16719
mpm@selenic.com
Break apart hg.py...
r1089 def lookup(self, key):
Martin von Zweigbergk
localrepo: use revsymbol() in lookup()...
r37331 return scmutil.revsymbol(self, key).node()
mpm@selenic.com
Break apart hg.py...
r1089
Martin von Zweigbergk
localrepo: drop "remote" argument from lookupbranch() (API)...
r37369 def lookupbranch(self, key):
if key in self.branchmap():
Steve Losh
commands: add more robust support for 'hg log -b' (issue2078)...
r10960 return key
Martin von Zweigbergk
localrepo: use revsymbol in lookupbranch() too...
r37370 return scmutil.revsymbol(self, key).branch()
Steve Losh
commands: add more robust support for 'hg log -b' (issue2078)...
r10960
Peter Arrenbrecht
wireproto: add known([id]) function...
r13723 def known(self, nodes):
Pierre-Yves David
discovery: properly filter changeset in 'peer.known' (issue4982)...
r27319 cl = self.changelog
nm = cl.nodemap
filtered = cl.filteredrevs
Pierre-Yves David
phases: make secret changeset undiscoverable in all case...
r15889 result = []
for n in nodes:
r = nm.get(n)
Pierre-Yves David
discovery: properly filter changeset in 'peer.known' (issue4982)...
r27319 resp = not (r is None or r in filtered)
Pierre-Yves David
phases: make secret changeset undiscoverable in all case...
r15889 result.append(resp)
return result
Peter Arrenbrecht
wireproto: add known([id]) function...
r13723
mpm@selenic.com
Break apart hg.py...
r1089 def local(self):
Matt Mackall
localrepo: local() returns self...
r14603 return self
mpm@selenic.com
Break apart hg.py...
r1089
Matt Mackall
publishing: add helper method to localrepo
r25623 def publishing(self):
Matt Mackall
publishing: unconditionally trust publishing flag...
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
Jun Wu
codemod: register core configitems using a script...
r33499 return self.ui.configbool('phases', 'publish', untrusted=True)
Matt Mackall
publishing: add helper method to localrepo
r25623
Peter Arrenbrecht
peer: introduce real peer classes...
r17192 def cancopy(self):
Pierre-Yves David
clone: do not turn hidden changeset public on publishing clone (issue3935)...
r20332 # so statichttprepo's override of local() works
if not self.local():
return False
Matt Mackall
publishing: use new helper method
r25624 if not self.publishing():
Pierre-Yves David
clone: do not turn hidden changeset public on publishing clone (issue3935)...
r20332 return True
# if publishing we can't copy if there is filtered content
return not self.filtered('visible').changelog.filteredrevs
Peter Arrenbrecht
peer: introduce real peer classes...
r17192
Angel Ezquerra
localrepo: introduce shared method to check if a repository is shared...
r23666 def shared(self):
'''the type of shared repository (None if not shared)'''
if self.sharedpath != self.path:
return 'store'
return None
Angel Ezquerra
localrepo: make it possible to pass multiple path elements to join and wjoin...
r22362 def wjoin(self, f, *insidef):
Angel Ezquerra
localrepo: use vfs.reljoin rather than os.path.join in the localrepository class...
r23714 return self.vfs.reljoin(self.root, f, *insidef)
mpm@selenic.com
Break apart hg.py...
r1089
Patrick Mezard
localrepo: add setparents() to adjust dirstate copies (issue3407)...
r16551 def setparents(self, p1, p2=nullid):
Augie Fackler
localrepo: migrate to context manager for changing dirstate parents
r32350 with self.dirstate.parentchange():
copies = self.dirstate.setparents(p1, p2)
pctx = self[p1]
if copies:
# Adjust copy records, the dirstate cannot do it, it
# requires access to parents manifests. Preserve them
# only for entries added to first parent.
for f in copies:
if f not in pctx and copies[f] in pctx:
self.dirstate.copy(copies[f], f)
if p2 == nullid:
for f, s in sorted(self.dirstate.copies().items()):
if f not in pctx and s not in pctx:
self.dirstate.copy(None, f)
Patrick Mezard
localrepo: add setparents() to adjust dirstate copies (issue3407)...
r16551
Martin von Zweigbergk
context: avoid using a context object as a changeid...
r37189 def filectx(self, path, changeid=None, fileid=None, changectx=None):
Yuya Nishihara
localrepo: correct docstring of filectx()...
r40754 """changeid must be a changeset revision, if specified.
Matt Mackall
Add context helper functions to localrepo
r2564 fileid can be a file revision or node."""
Martin von Zweigbergk
context: avoid using a context object as a changeid...
r37189 return context.filectx(self, path, changeid, fileid,
changectx=changectx)
Matt Mackall
Add context helper functions to localrepo
r2564
mpm@selenic.com
Break apart hg.py...
r1089 def getcwd(self):
return self.dirstate.getcwd()
Alexis S. L. Carvalho
Add dirstate.pathto and localrepo.pathto....
r4525 def pathto(self, f, cwd=None):
return self.dirstate.pathto(f, cwd)
Nicolas Dumazet
localrepo: refactor filter computation...
r11698 def _loadfilter(self, filter):
Gregory Szorc
localrepo: make filterpats private (API)...
r37155 if filter not in self._filterpats:
mpm@selenic.com
Add file encoding/decoding support
r1258 l = []
Matt Mackall
unify encode/decode filter routines
r4004 for pat, cmd in self.ui.configitems(filter):
Mads Kiilerich
Make it possible to disable filtering for a pattern....
r7226 if cmd == '!':
continue
Benoit Boissinot
style: use consistent variable names (*mod) with imports which would shadow
r10651 mf = matchmod.match(self.root, '', [pat])
Patrick Mezard
Register data filters in a localrepo instead of util...
r5966 fn = None
Jesse Glick
Strip filter name from command before passing to filter function....
r6066 params = cmd
Patrick Mezard
Register data filters in a localrepo instead of util...
r5966 for name, filterfn in self._datafilters.iteritems():
Thomas Arendsen Hein
Removed trailing spaces from everything except test output
r6210 if cmd.startswith(name):
Patrick Mezard
Register data filters in a localrepo instead of util...
r5966 fn = filterfn
Jesse Glick
Strip filter name from command before passing to filter function....
r6066 params = cmd[len(name):].lstrip()
Patrick Mezard
Register data filters in a localrepo instead of util...
r5966 break
if not fn:
Yuya Nishihara
procutil: bulk-replace function calls to point to new module
r37138 fn = lambda s, c, **kwargs: procutil.filter(s, c)
Jesse Glick
Provide better context for custom Python encode/decode filters....
r5967 # Wrap old filters not supporting keyword arguments
Augie Fackler
py3: introduce and use pycompat.getargspec...
r36196 if not pycompat.getargspec(fn)[2]:
Jesse Glick
Provide better context for custom Python encode/decode filters....
r5967 oldfn = fn
fn = lambda s, c, **kwargs: oldfn(s, c)
Jesse Glick
Strip filter name from command before passing to filter function....
r6066 l.append((mf, fn, params))
Gregory Szorc
localrepo: make filterpats private (API)...
r37155 self._filterpats[filter] = l
return self._filterpats[filter]
mpm@selenic.com
Add file encoding/decoding support
r1258
Nicolas Dumazet
localrepo: load filter patterns outside of _filter
r12707 def _filter(self, filterpats, filename, data):
for mf, fn, cmd in filterpats:
mpm@selenic.com
Add file encoding/decoding support
r1258 if mf(filename):
Martin Geisler
do not attempt to translate ui.debug output
r9467 self.ui.debug("filtering %s through %s\n" % (filename, cmd))
Jesse Glick
Provide better context for custom Python encode/decode filters....
r5967 data = fn(data, cmd, ui=self.ui, repo=self, filename=filename)
mpm@selenic.com
Add file encoding/decoding support
r1258 break
return data
mpm@selenic.com
Break apart hg.py...
r1089
Pierre-Yves David
clfilter: add a propertycache that must be unfiltered...
r18013 @unfilteredpropertycache
Nicolas Dumazet
localrepo: use propertycaches to access encode/decode filters
r12708 def _encodefilterpats(self):
return self._loadfilter('encode')
Pierre-Yves David
clfilter: add a propertycache that must be unfiltered...
r18013 @unfilteredpropertycache
Nicolas Dumazet
localrepo: use propertycaches to access encode/decode filters
r12708 def _decodefilterpats(self):
return self._loadfilter('decode')
Patrick Mezard
Register data filters in a localrepo instead of util...
r5966 def adddatafilter(self, name, filter):
self._datafilters[name] = filter
Matt Mackall
unify encode/decode filter routines
r4004 def wread(self, filename):
Pierre-Yves David
localrepo: use self.wvfs.islink directly...
r31428 if self.wvfs.islink(filename):
FUJIWARA Katsunori
localrepo: use "vfs.readlink()" instead of "os.readlink()"
r18950 data = self.wvfs.readlink(filename)
Matt Mackall
unify encode/decode filter routines
r4004 else:
Angel Ezquerra
localrepo: remove all internal uses of localrepo.wopener...
r23854 data = self.wvfs.read(filename)
Nicolas Dumazet
localrepo: use propertycaches to access encode/decode filters
r12708 return self._filter(self._encodefilterpats, filename, data)
mpm@selenic.com
Add file encoding/decoding support
r1258
Boris Feld
write: add the possibility to pass keyword argument from batchget to vfs...
r35743 def wwrite(self, filename, data, flags, backgroundclose=False, **kwargs):
FUJIWARA Katsunori
revert: apply normallookup on reverted file if size isn't changed (issue4583)...
r24843 """write ``data`` into ``filename`` in the working directory
This returns length of written (maybe decoded) data.
"""
Nicolas Dumazet
localrepo: use propertycaches to access encode/decode filters
r12708 data = self._filter(self._decodefilterpats, filename, data)
Matt Mackall
util: set_flags shouldn't know about repo flag formats
r6877 if 'l' in flags:
Angel Ezquerra
localrepo: remove all internal uses of localrepo.wopener...
r23854 self.wvfs.symlink(data, filename)
Matt Mackall
util: set_flags shouldn't know about repo flag formats
r6877 else:
Boris Feld
write: add the possibility to pass keyword argument from batchget to vfs...
r35743 self.wvfs.write(filename, data, backgroundclose=backgroundclose,
**kwargs)
Matt Mackall
util: set_flags shouldn't know about repo flag formats
r6877 if 'x' in flags:
FUJIWARA Katsunori
localrepo: use "vfs.setflags()" instead of "util.setflags()"
r18951 self.wvfs.setflags(filename, False, True)
Boris Feld
atomicupdate: add an experimental option to use atomictemp when updating...
r35744 else:
self.wvfs.setflags(filename, False, False)
FUJIWARA Katsunori
revert: apply normallookup on reverted file if size isn't changed (issue4583)...
r24843 return len(data)
mpm@selenic.com
Add file encoding/decoding support
r1258
Matt Mackall
replace filehandle version of wwrite with wwritedata
r4005 def wwritedata(self, filename, data):
Nicolas Dumazet
localrepo: use propertycaches to access encode/decode filters
r12708 return self._filter(self._decodefilterpats, filename, data)
mpm@selenic.com
Break apart hg.py...
r1089
Pierre-Yves David
localrepo: add a currenttransaction method...
r23379 def currenttransaction(self):
"""return the current transaction or None if non exists"""
Jordi Gutiérrez Hermoso
style: kill ersatz if-else ternary operators...
r24306 if self._transref:
tr = self._transref()
else:
tr = None
Henrik Stuart
transaction: support multiple, separate transactions...
r8072 if tr and tr.running():
Pierre-Yves David
localrepo: add a currenttransaction method...
r23379 return tr
return None
def transaction(self, desc, report=None):
Pierre-Yves David
devel: rename 'all' to 'all-warnings' (BC)...
r25290 if (self.ui.configbool('devel', 'all-warnings')
Pierre-Yves David
devel: also warn about transaction started without a lock...
r24388 or self.ui.configbool('devel', 'check-locks')):
Pierre-Yves David
develwarn: use the lock helper in local repo...
r29705 if self._currentlock(self._lockref) is None:
Jun Wu
localrepo: use ProgrammingError...
r30574 raise error.ProgrammingError('transaction requires locking')
Pierre-Yves David
localrepo: add a currenttransaction method...
r23379 tr = self.currenttransaction()
if tr is not None:
Martin von Zweigbergk
transaction: add a name and a __repr__ implementation (API)...
r36837 return tr.nest(name=desc)
mason@suse.com
Automatic nesting into running transactions in the same repository....
r1806
Matt Mackall
transactions: don't show a backtrace when journal exists...
r5865 # abort here if the journal already exists
FUJIWARA Katsunori
localrepo: use "vfs.exists()" instead of "os.path.exists()"
r18947 if self.svfs.exists("journal"):
Matt Mackall
many, many trivial check-code fixups
r10282 raise error.RepoError(
Johan Bjork
journal: set Abort hint when failing due to an abandoned transaction
r21274 _("abandoned transaction found"),
hint=_("run 'hg recover' to clean up transaction"))
Matt Mackall
transactions: don't show a backtrace when journal exists...
r5865
FUJIWARA Katsunori
transaction: separate calculating TXNID from creating transaction object...
r25267 idbase = "%.40f#%f" % (random.random(), time.time())
Augie Fackler
localrepo: use node.hex instead of awkward .encode('latin1')...
r31523 ha = hex(hashlib.sha1(idbase).digest())
Augie Fackler
localrepo: ensure transaction id is fully bytes on py3
r31508 txnid = 'TXN:' + ha
FUJIWARA Katsunori
localrepo: pass hook argument txnid to pretxnopen hooks...
r25268 self.hook('pretxnopen', throw=True, txnname=desc, txnid=txnid)
Pierre-Yves David
hook: have a generic hook for transaction opening...
r24281
Idan Kamara
localrepo: refactor retrieving of journal/undo files paths...
r16236 self._writejournal(desc)
FUJIWARA Katsunori
localrepo: use "vfs.rename()" instead of "util.rename()"...
r18952 renames = [(vfs, x, undoname(x)) for vfs, x in self._journalfiles()]
Jordi Gutiérrez Hermoso
style: kill ersatz if-else ternary operators...
r24306 if report:
rp = report
else:
rp = self.ui.warn
Gregory Szorc
revlog: rewrite censoring logic...
r40092 vfsmap = {'plain': self.vfs, 'store': self.svfs} # root of .hg/
Pierre-Yves David
hook: add a generic hook right before we commit a transaction...
r24284 # we must avoid cyclic reference between repo and transaction.
reporef = weakref.ref(self)
Pierre-Yves David
track-tags: introduce first bits of tags tracking during transaction...
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
track-tags: write all tag changes to a file...
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
track-tags: introduce first bits of tags tracking during transaction...
r31994 tracktags = lambda x: None
# experimental config: experimental.hook-track-tags
Jun Wu
codemod: register core configitems using a script...
r33499 shouldtracktags = self.ui.configbool('experimental', 'hook-track-tags')
Pierre-Yves David
track-tags: introduce first bits of tags tracking during transaction...
r31994 if desc != 'strip' and shouldtracktags:
oldheads = self.changelog.headrevs()
def tracktags(tr2):
repo = reporef()
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
track-tags: compute the actual differences between tags pre/post transaction...
r31995 changes = tagsmod.difftags(repo.ui, repo, oldfnodes, newfnodes)
if changes:
Pierre-Yves David
track-tags: introduce first bits of tags tracking during transaction...
r31994 tr2.hookargs['tag_moved'] = '1'
Pierre-Yves David
track-tags: write all tag changes to a file...
r31996 with repo.vfs('changes/tags.changes', 'w',
atomictemp=True) as changesfile:
# 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)
Pierre-Yves David
track-tags: introduce first bits of tags tracking during transaction...
r31994 def validate(tr2):
Pierre-Yves David
hook: add a generic hook right before we commit a transaction...
r24284 """will run pre-closing hooks"""
Pierre-Yves David
track-tags: introduce first bits of tags tracking during transaction...
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
bookmark: add a dedicated pretxnclose-bookmark hook...
r34710 repo = reporef()
Boris Feld
server: introduce a 'experimental.single-head-per-branch' option...
r35186 if repo.ui.configbool('experimental', 'single-head-per-branch'):
scmutil.enforcesinglehead(repo, tr2, desc)
Boris Feld
bookmark: add a dedicated pretxnclose-bookmark hook...
r34710 if hook.hashook(repo.ui, 'pretxnclose-bookmark'):
for name, (old, new) in sorted(tr.changes['bookmarks'].items()):
args = tr.hookargs.copy()
args.update(bookmarks.preparehookargs(name, old, new))
repo.hook('pretxnclose-bookmark', throw=True,
txnname=desc,
**pycompat.strkwargs(args))
Boris Feld
phase: add a dedicated pretxnclose-phase hook...
r34712 if hook.hashook(repo.ui, 'pretxnclose-phase'):
cl = repo.unfiltered().changelog
for rev, (old, new) in tr.changes['phases'].items():
args = tr.hookargs.copy()
node = hex(cl.node(rev))
args.update(phases.preparehookargs(node, old, new))
repo.hook('pretxnclose-phase', throw=True, txnname=desc,
**pycompat.strkwargs(args))
Boris Feld
bookmark: add a dedicated pretxnclose-bookmark hook...
r34710
repo.hook('pretxnclose', throw=True,
txnname=desc, **pycompat.strkwargs(tr.hookargs))
FUJIWARA Katsunori
localrepo: execute appropriate actions for dirstate at releasing transaction...
r26577 def releasefn(tr, success):
repo = reporef()
if success:
FUJIWARA Katsunori
dirstate: make writing in-memory changes aware of transaction activity...
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
dirstate: make dirstate.write() callers pass transaction object to it...
r26748 repo.dirstate.write(None)
FUJIWARA Katsunori
localrepo: execute appropriate actions for dirstate at releasing transaction...
r26577 else:
# discard all changes (including ones already written
# out) in this transaction
Martin von Zweigbergk
narrow: call narrowspec.{save,restore,clear}backup directly...
r38905 narrowspec.restorebackup(self, 'journal.narrowspec')
Martin von Zweigbergk
narrow: include working copy narrowspec in transaction journal...
r41264 narrowspec.restorewcbackup(self, 'journal.narrowspec.dirstate')
Adam Simpkins
dirstate: update backup functions to take full backup filename...
r33440 repo.dirstate.restorebackup(None, 'journal.dirstate')
Pierre-Yves David
hook: add a generic hook right before we commit a transaction...
r24284
FUJIWARA Katsunori
localrepo: discard objects in _filecache at transaction failure (issue4876)...
r26831 repo.invalidate(clearfilecache=True)
Siddharth Agarwal
localrepo: kill off sopener (API)...
r25667 tr = transaction.transaction(rp, self.svfs, vfsmap,
FUJIWARA Katsunori
transaction: take journal file path relative to vfs to use file API via vfs
r20087 "journal",
Pierre-Yves David
transaction: pass the name of the "undo" journal to the transaction...
r23903 "undo",
Alexander Solovyov
fix bookmarks rollback behavior...
r14266 aftertrans(renames),
Pierre-Yves David
hook: add a generic hook right before we commit a transaction...
r24284 self.store.createmode,
FUJIWARA Katsunori
localrepo: execute appropriate actions for dirstate at releasing transaction...
r26577 validator=validate,
FUJIWARA Katsunori
transaction: avoid file stat ambiguity only for files in blacklist...
r33278 releasefn=releasefn,
Martin von Zweigbergk
transaction: add a name and a __repr__ implementation (API)...
r36837 checkambigfiles=_cachedfiles,
name=desc)
Yuya Nishihara
transaction: remember original len(repo) instead of tracking added revs (API)...
r39337 tr.changes['origrepolen'] = len(self)
transaction: track new obsmarkers in the 'changes' mapping...
r33248 tr.changes['obsmarkers'] = set()
Boris Feld
phases: track phase movements in 'advanceboundary'...
r33451 tr.changes['phases'] = {}
Boris Feld
bookmark: track bookmark changes at the transaction level...
r33516 tr.changes['bookmarks'] = {}
Pierre-Yves David
transaction: introduce a transaction ID, to be available to all hooks...
r24740
FUJIWARA Katsunori
transaction: separate calculating TXNID from creating transaction object...
r25267 tr.hookargs['txnid'] = txnid
Pierre-Yves David
fncache: document the fact fncache is outdate at hook run time...
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.
tr.addfinalize('flush-fncache', self.store.write)
Pierre-Yves David
hook: add a generic hook after transaction has been closed...
r24282 def txnclosehook(tr2):
"""To be run if transaction is successful, will schedule a hook run
"""
Gregory Szorc
localrepo: don't reference transaction from hook closure (issue5043)...
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
Boris Feld
bookmark: add a dedicated txnclose-bookmark hook...
r34709 def hookfunc():
repo = reporef()
if hook.hashook(repo.ui, 'txnclose-bookmark'):
bmchanges = sorted(tr.changes['bookmarks'].items())
for name, (old, new) in bmchanges:
args = tr.hookargs.copy()
args.update(bookmarks.preparehookargs(name, old, new))
repo.hook('txnclose-bookmark', throw=False,
txnname=desc, **pycompat.strkwargs(args))
Boris Feld
phase: add a dedicated txnclose-phase hook...
r34711 if hook.hashook(repo.ui, 'txnclose-phase'):
cl = repo.unfiltered().changelog
phasemv = sorted(tr.changes['phases'].items())
for rev, (old, new) in phasemv:
args = tr.hookargs.copy()
node = hex(cl.node(rev))
args.update(phases.preparehookargs(node, old, new))
repo.hook('txnclose-phase', throw=False, txnname=desc,
**pycompat.strkwargs(args))
Boris Feld
bookmark: add a dedicated txnclose-bookmark hook...
r34709 repo.hook('txnclose', throw=False, txnname=desc,
**pycompat.strkwargs(hookargs))
reporef()._afterlock(hookfunc)
Pierre-Yves David
hook: add a generic hook after transaction has been closed...
r24282 tr.addfinalize('txnclose-hook', txnclosehook)
Martin von Zweigbergk
localrepo: run cache-warming transaction callback before report callback...
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.
tr.addpostclose('-warm-cache', self._buildcacheupdater(tr))
Pierre-Yves David
hooks: add a 'txnabort' hook...
r24792 def txnaborthook(tr2):
"""To be run if transaction is aborted
"""
reporef().hook('txnabort', throw=False, txnname=desc,
Augie Fackler
localrepo: pass transaction kwargs as strings, not bytes...
r35858 **pycompat.strkwargs(tr2.hookargs))
Pierre-Yves David
hooks: add a 'txnabort' hook...
r24792 tr.addabort('txnabort-hook', txnaborthook)
Yuya Nishihara
localrepo: refresh filecache stats only if transaction finished successfully...
r26251 # avoid eager cache invalidation. in-memory data should be identical
# to stored data if transaction has no error.
tr.addpostclose('refresh-filecachestats', self._refreshfilecachestats)
Alexander Solovyov
fix bookmarks rollback behavior...
r14266 self._transref = weakref.ref(tr)
Boris Feld
transaction-summary: display the summary for all transactions...
r33541 scmutil.registersummarycallback(self, tr, desc)
Alexander Solovyov
fix bookmarks rollback behavior...
r14266 return tr
Idan Kamara
localrepo: refactor retrieving of journal/undo files paths...
r16236 def _journalfiles(self):
FUJIWARA Katsunori
localrepo: use "vfs.rename()" instead of "util.rename()"...
r18952 return ((self.svfs, 'journal'),
Martin von Zweigbergk
narrow: include journal.narrowspec in transaction journal...
r41262 (self.svfs, 'journal.narrowspec'),
Martin von Zweigbergk
narrow: include working copy narrowspec in transaction journal...
r41264 (self.vfs, 'journal.narrowspec.dirstate'),
FUJIWARA Katsunori
localrepo: use "vfs.rename()" instead of "util.rename()"...
r18952 (self.vfs, 'journal.dirstate'),
(self.vfs, 'journal.branch'),
(self.vfs, 'journal.desc'),
(self.vfs, 'journal.bookmarks'),
(self.svfs, 'journal.phaseroots'))
Idan Kamara
localrepo: refactor retrieving of journal/undo files paths...
r16236
def undofiles(self):
FUJIWARA Katsunori
localrepo: make "undofiles()" return list of tuples "(vfs, relative filename)"...
r20975 return [(vfs, undoname(x)) for vfs, x in self._journalfiles()]
Idan Kamara
localrepo: refactor retrieving of journal/undo files paths...
r16236
transaction: run _writejournal unfiltered...
r32452 @unfilteredmethod
Alexander Solovyov
fix bookmarks rollback behavior...
r14266 def _writejournal(self, desc):
Adam Simpkins
dirstate: update backup functions to take full backup filename...
r33440 self.dirstate.savebackup(None, 'journal.dirstate')
Martin von Zweigbergk
narrow: include working copy narrowspec in transaction journal...
r41264 narrowspec.savewcbackup(self, 'journal.narrowspec.dirstate')
Martin von Zweigbergk
narrow: call narrowspec.{save,restore,clear}backup directly...
r38905 narrowspec.savebackup(self, 'journal.narrowspec')
Angel Ezquerra
localrepo: remove all internal uses of localrepo.opener...
r23852 self.vfs.write("journal.branch",
Dan Villiom Podlaski Christiansen
prevent transient leaks of file handle by using new helper functions...
r14168 encoding.fromlocal(self.dirstate.branch()))
Angel Ezquerra
localrepo: remove all internal uses of localrepo.opener...
r23852 self.vfs.write("journal.desc",
Dan Villiom Podlaski Christiansen
prevent transient leaks of file handle by using new helper functions...
r14168 "%d\n%s\n" % (len(self), desc))
Angel Ezquerra
localrepo: remove all internal uses of localrepo.opener...
r23852 self.vfs.write("journal.bookmarks",
self.vfs.tryread("bookmarks"))
Angel Ezquerra
localrepo: remove all internal uses of localrepo.sopener...
r23853 self.svfs.write("journal.phaseroots",
self.svfs.tryread("phaseroots"))
Alexander Solovyov
fix bookmarks rollback behavior...
r14266
mpm@selenic.com
Break apart hg.py...
r1089 def recover(self):
Bryan O'Sullivan
with: use context manager in localrepo recover
r27846 with self.lock():
FUJIWARA Katsunori
localrepo: use "vfs.exists()" instead of "os.path.exists()"
r18947 if self.svfs.exists("journal"):
Matt Mackall
Use try/finally pattern to cleanup locks and transactions
r4915 self.ui.status(_("rolling back interrupted transaction\n"))
Angel Ezquerra
localrepo: remove all internal uses of localrepo.sopener...
r23853 vfsmap = {'': self.svfs,
Angel Ezquerra
localrepo: remove all internal uses of localrepo.opener...
r23852 'plain': self.vfs,}
Angel Ezquerra
localrepo: remove all internal uses of localrepo.sopener...
r23853 transaction.rollback(self.svfs, vfsmap, "journal",
FUJIWARA Katsunori
transaction: avoid file stat ambiguity only for files in blacklist...
r33278 self.ui.warn,
checkambigfiles=_cachedfiles)
Matt Mackall
Use try/finally pattern to cleanup locks and transactions
r4915 self.invalidate()
return True
else:
self.ui.warn(_("no interrupted transaction available\n"))
return False
mpm@selenic.com
Break apart hg.py...
r1089
Greg Ward
rollback: avoid unsafe rollback when not at tip (issue2998)...
r15183 def rollback(self, dryrun=False, force=False):
FUJIWARA Katsunori
localrepo: restore dirstate to one before rollbacking if not parent-gone...
r26631 wlock = lock = dsguard = None
Matt Mackall
Use try/finally pattern to cleanup locks and transactions
r4915 try:
mason@suse.com
Allow callers to pass in the dirstate lock in most localrepo.py funcs....
r1712 wlock = self.wlock()
Eric Hopper
Fix hg import --exact bug that hangs hg on failure.
r4438 lock = self.lock()
FUJIWARA Katsunori
localrepo: use "vfs.exists()" instead of "os.path.exists()"
r18947 if self.svfs.exists("undo"):
Augie Fackler
localrepo: refer to dirstateguard by its new name
r30492 dsguard = dirstateguard.dirstateguard(self, 'rollback')
FUJIWARA Katsunori
localrepo: restore dirstate to one before rollbacking if not parent-gone...
r26631
return self._rollback(dryrun, force, dsguard)
Matt Mackall
Use try/finally pattern to cleanup locks and transactions
r4915 else:
self.ui.warn(_("no rollback information available\n"))
Matt Mackall
commands: initial audit of exit codes...
r11177 return 1
Matt Mackall
Use try/finally pattern to cleanup locks and transactions
r4915 finally:
FUJIWARA Katsunori
localrepo: restore dirstate to one before rollbacking if not parent-gone...
r26631 release(dsguard, lock, wlock)
mpm@selenic.com
Break apart hg.py...
r1089
Pierre-Yves David
clfilter: rename `unfilteredmeth` to `unfilteredmethod`...
r18016 @unfilteredmethod # Until we get smarter cache management
FUJIWARA Katsunori
localrepo: restore dirstate to one before rollbacking if not parent-gone...
r26631 def _rollback(self, dryrun, force, dsguard):
Greg Ward
rollback: refactor for readability; cosmetics....
r15130 ui = self.ui
Greg Ward
rollback: improve readability; clarify that the return value is an int.
r15097 try:
Angel Ezquerra
localrepo: remove all internal uses of localrepo.opener...
r23852 args = self.vfs.read('undo.desc').splitlines()
Greg Ward
rollback: refactor for readability; cosmetics....
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:
Pulkit Goyal
py3: use '%d' instead of '%s' for integers...
r32895 msg = (_('repository tip rolled back to revision %d'
Greg Ward
rollback: refactor for readability; cosmetics....
r15130 ' (undo %s: %s)\n')
% (oldtip, desc, detail))
else:
Pulkit Goyal
py3: use '%d' instead of '%s' for integers...
r32895 msg = (_('repository tip rolled back to revision %d'
Greg Ward
rollback: refactor for readability; cosmetics....
r15130 ' (undo %s)\n')
% (oldtip, desc))
Greg Ward
rollback: improve readability; clarify that the return value is an int.
r15097 except IOError:
Greg Ward
rollback: refactor for readability; cosmetics....
r15130 msg = _('rolling back unknown transaction\n')
Greg Ward
rollback: avoid unsafe rollback when not at tip (issue2998)...
r15183 desc = None
if not force and self['.'] != self['tip'] and desc == 'commit':
Pierre-Yves David
error: get Abort from 'error' instead of 'util'...
r26587 raise error.Abort(
Greg Ward
rollback: avoid unsafe rollback when not at tip (issue2998)...
r15183 _('rollback of last commit while not checked out '
Matt Mackall
rollback: use a hint for force
r15187 'may lose data'), hint=_('use -f to force'))
Greg Ward
rollback: avoid unsafe rollback when not at tip (issue2998)...
r15183
Greg Ward
rollback: refactor for readability; cosmetics....
r15130 ui.status(msg)
Greg Ward
rollback: improve readability; clarify that the return value is an int.
r15097 if dryrun:
return 0
Greg Ward
rollback: only restore dirstate and branch when appropriate....
r15131
parents = self.dirstate.parents()
Idan Kamara
localrepo: introduce destroying function
r18310 self.destroying()
Pierre-Yves David
rollback: have an empty entry for the vfsmap in rollback...
r23902 vfsmap = {'plain': self.vfs, '': self.svfs}
FUJIWARA Katsunori
transaction: avoid file stat ambiguity only for files in blacklist...
r33278 transaction.rollback(self.svfs, vfsmap, 'undo', ui.warn,
checkambigfiles=_cachedfiles)
FUJIWARA Katsunori
localrepo: use "vfs.exists()" instead of "os.path.exists()"
r18947 if self.vfs.exists('undo.bookmarks'):
FUJIWARA Katsunori
localrepo: make restoring from backup at rollback avoid ambiguity of file stat...
r29352 self.vfs.rename('undo.bookmarks', 'bookmarks', checkambig=True)
FUJIWARA Katsunori
localrepo: use "vfs.exists()" instead of "os.path.exists()"
r18947 if self.svfs.exists('undo.phaseroots'):
FUJIWARA Katsunori
localrepo: make restoring from backup at rollback avoid ambiguity of file stat...
r29352 self.svfs.rename('undo.phaseroots', 'phaseroots', checkambig=True)
Greg Ward
rollback: improve readability; clarify that the return value is an int.
r15097 self.invalidate()
Greg Ward
rollback: only restore dirstate and branch when appropriate....
r15131
parentgone = (parents[0] not in self.changelog.nodemap or
parents[1] not in self.changelog.nodemap)
if parentgone:
FUJIWARA Katsunori
localrepo: restore dirstate to one before rollbacking if not parent-gone...
r26631 # prevent dirstateguard from overwriting already restored one
dsguard.close()
Martin von Zweigbergk
narrow: call narrowspec.{save,restore,clear}backup directly...
r38905 narrowspec.restorebackup(self, 'undo.narrowspec')
Martin von Zweigbergk
narrow: include working copy narrowspec in transaction journal...
r41264 narrowspec.restorewcbackup(self, 'undo.narrowspec.dirstate')
Adam Simpkins
dirstate: update backup functions to take full backup filename...
r33440 self.dirstate.restorebackup(None, 'undo.dirstate')
Greg Ward
rollback: only restore dirstate and branch when appropriate....
r15131 try:
Angel Ezquerra
localrepo: remove all internal uses of localrepo.opener...
r23852 branch = self.vfs.read('undo.branch')
Sune Foldager
rollback: write dirstate branch with correct encoding
r17360 self.dirstate.setbranch(encoding.tolocal(branch))
Greg Ward
rollback: only restore dirstate and branch when appropriate....
r15131 except IOError:
ui.warn(_('named branch could not be reset: '
'current branch is still \'%s\'\n')
% self.dirstate.branch())
Augie Fackler
commands: inline definition of localrepo.parents() and drop the method (API)...
r27167 parents = tuple([p.rev() for p in self[None].parents()])
Greg Ward
rollback: only restore dirstate and branch when appropriate....
r15131 if len(parents) > 1:
ui.status(_('working directory now based on '
'revisions %d and %d\n') % parents)
else:
ui.status(_('working directory now based on '
'revision %d\n') % parents)
Siddharth Agarwal
localrepo: switch to mergestate.clean()...
r26989 mergemod.mergestate.clean(self, self['.'].node())
Matt Mackall
rollback: clear resolve state (issue4593)
r24784
Joshua Redstone
strip: incrementally update the branchheads cache after a strip...
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
rollback: always call destroyed() (regression from 1.9)...
r15604 self.destroyed()
Greg Ward
rollback: improve readability; clarify that the return value is an int.
r15097 return 0
cache: make the cache updated callback easily accessible to extension...
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)
def updater(tr):
repo = reporef()
repo.updatecaches(tr)
return updater
Pierre-Yves David
caches: introduce a function to warm cache...
r32263 @unfilteredmethod
Boris Feld
debugupdatecache: also warm rev branch cache...
r36970 def updatecaches(self, tr=None, full=False):
Pierre-Yves David
caches: call 'repo.updatecache()' in 'repo.destroyed()'...
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
debugupdatecache: also warm rev branch cache...
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.
Pierre-Yves David
caches: call 'repo.updatecache()' in 'repo.destroyed()'...
r32264 """
if tr is not None and tr.hookargs.get('source') == 'strip':
Pierre-Yves David
caches: introduce a function to warm cache...
r32263 # During strip, many caches are invalid but
# later call to `destroyed` will refresh them.
return
Yuya Nishihara
transaction: remember original len(repo) instead of tracking added revs (API)...
r39337 if tr is None or tr.changes['origrepolen'] < len(self):
Pierre-Yves David
caches: call 'repo.updatecache()' in 'repo.destroyed()'...
r32264 # updating the unfiltered branchmap should refresh all the others,
Pierre-Yves David
caches: move the 'updating the branch cache' message in 'updatecaches'...
r32267 self.ui.debug('updating the branch cache\n')
Pierre-Yves David
caches: introduce a function to warm cache...
r32263 branchmap.updatecache(self.filtered('served'))
Boris Feld
debugupdatecache: also warm rev branch cache...
r36970 if full:
rbc = self.revbranchcache()
for r in self.changelog:
rbc.branchinfo(r)
rbc.write()
Martijn Pieters
manifest: persist the manifestfulltext cache...
r38803 # ensure the working copy parents are in the manifestfulltextcache
for ctx in self['.'].parents():
ctx.manifest() # accessing the manifest is enough
Benoit Boissinot
strip: invalidate all caches after stripping (fixes issue1951)...
r10547 def invalidatecaches(self):
Idan Kamara
localrepo: delete _phaserev when invalidating caches
r15988
Yuya Nishihara
py3: invalidate repository cache with system-string keys...
r40396 if r'_tagscache' in vars(self):
Pierre-Yves David
clfilter: add a propertycache that must be unfiltered...
r18013 # can't use delattr on proxy
Yuya Nishihara
py3: invalidate repository cache with system-string keys...
r40396 del self.__dict__[r'_tagscache']
Idan Kamara
localrepo: unify tag related info into a tagscache class
r14936
Pierre-Yves David
branchmap: enable caching for filtered version too...
r18189 self.unfiltered()._branchcaches.clear()
Pierre-Yves David
cache: group obscache and revsfiltercache invalidation in a single function...
r18105 self.invalidatevolatilesets()
Gregory Szorc
localrepo: add sparse caches...
r33302 self._sparsesignaturecache.clear()
Pierre-Yves David
cache: group obscache and revsfiltercache invalidation in a single function...
r18105
def invalidatevolatilesets(self):
self.filteredrevcache.clear()
Pierre-Yves David
obsolete: introduce caches for all meaningful sets...
r17469 obsolete.clearobscaches(self)
Benoit Boissinot
revalidate revlog data after locking the repo (issue132)
r1784
Idan Kamara
localrepo: decorate dirstate() with filecache...
r14930 def invalidatedirstate(self):
'''Invalidates the dirstate, causing the next call to dirstate
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
known good state).'''
Mark Thomas
py3: fix test-dirstate-race.t...
r40332 if hasunfilteredcache(self, r'dirstate'):
Idan Kamara
dirstate: add filecache support
r16200 for k in self.dirstate._filecache:
try:
delattr(self.dirstate, k)
except AttributeError:
pass
Mark Thomas
py3: fix test-dirstate-race.t...
r40332 delattr(self.unfiltered(), r'dirstate')
Idan Kamara
localrepo: decorate dirstate() with filecache...
r14930
FUJIWARA Katsunori
localrepo: discard objects in _filecache at transaction failure (issue4876)...
r26831 def invalidate(self, clearfilecache=False):
FUJIWARA Katsunori
localrepo: make invalidate avoid invalidating store inside transaction (API)...
r29918 '''Invalidates both store and non-store parts other than dirstate
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).
'''
Mads Kiilerich
spelling: fix some minor issues found by spell checker
r18644 unfiltered = self.unfiltered() # all file caches are stored unfiltered
Augie Fackler
localrepo: forcibly copy list of filecache keys...
r31510 for k in list(self._filecache.keys()):
Idan Kamara
localrepo: make invalidate() walk _filecache
r14935 # dirstate is invalidated separately in invalidatedirstate()
if k == 'dirstate':
continue
Martin von Zweigbergk
repo: skip invalidation of changelog if it has 'delayed' changes (API)...
r33672 if (k == 'changelog' and
self.currenttransaction() and
self.changelog._delayed):
# 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
localrepo: make invalidate() walk _filecache
r14935
FUJIWARA Katsunori
localrepo: discard objects in _filecache at transaction failure (issue4876)...
r26831 if clearfilecache:
del self._filecache[k]
Idan Kamara
localrepo: make invalidate() walk _filecache
r14935 try:
Pierre-Yves David
clfilter: ensure cache invalidation is done on the main unfiltered repo...
r17997 delattr(unfiltered, k)
Idan Kamara
localrepo: make invalidate() walk _filecache
r14935 except AttributeError:
pass
Benoit Boissinot
strip: invalidate all caches after stripping (fixes issue1951)...
r10547 self.invalidatecaches()
FUJIWARA Katsunori
localrepo: make invalidate avoid invalidating store inside transaction (API)...
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
strip: invalidate all caches after stripping (fixes issue1951)...
r10547
Yuya Nishihara
localrepo: add hook point to invalidate everything on each command-server run...
r20627 def invalidateall(self):
'''Fully invalidates both store and non-store parts, causing the
subsequent operation to reread any outside changes.'''
# extension should hook this to invalidate its caches
self.invalidate()
self.invalidatedirstate()
FUJIWARA Katsunori
localrepo: make _refreshfilecachestats unfiltered method to refresh correctly...
r29920 @unfilteredmethod
Yuya Nishihara
localrepo: refresh filecache stats only if transaction finished successfully...
r26251 def _refreshfilecachestats(self, tr):
Yuya Nishihara
localrepo: move closure of lock release to class...
r26250 """Reload stats of cached files so that they are flagged as valid"""
for k, ce in self._filecache.items():
Augie Fackler
localrepo: consistently use native str when __dict__ is involved...
r35857 k = pycompat.sysstr(k)
if k == r'dirstate' or k not in self.__dict__:
Yuya Nishihara
localrepo: move closure of lock release to class...
r26250 continue
ce.refresh()
Siddharth Agarwal
localrepo: allow creating inherited locks...
r26439 def _lock(self, vfs, lockname, wait, releasefn, acquirefn, desc,
Siddharth Agarwal
localrepo: prevent wlock from being inherited when a transaction is running...
r26499 inheritchecker=None, parentenvvar=None):
Siddharth Agarwal
localrepo: allow creating inherited locks...
r26439 parentlock = None
Siddharth Agarwal
localrepo: add a note about parentenvvar...
r26472 # the contents of parentenvvar are used by the underlying lock to
# determine whether it can be inherited
Siddharth Agarwal
localrepo: allow creating inherited locks...
r26439 if parentenvvar is not None:
Pulkit Goyal
py3: replace os.environ with encoding.environ (part 1 of 5)...
r30634 parentlock = encoding.environ.get(parentenvvar)
Boris Feld
lock: add a trylock method handling the timeout and messaging logic...
r35209
timeout = 0
Boris Feld
lock: allow to configure when the lock messages are displayed...
r35210 warntimeout = 0
Boris Feld
lock: add a trylock method handling the timeout and messaging logic...
r35209 if wait:
timeout = self.ui.configint("ui", "timeout")
Boris Feld
lock: allow to configure when the lock messages are displayed...
r35210 warntimeout = self.ui.configint("ui", "timeout.warn")
Yuya Nishihara
lock: add internal config to not replace signal handlers while locking...
r38157 # internal config: ui.signal-safe-lock
signalsafe = self.ui.configbool('ui', 'signal-safe-lock')
Boris Feld
lock: add a trylock method handling the timeout and messaging logic...
r35209
Boris Feld
lock: allow to configure when the lock messages are displayed...
r35210 l = lockmod.trylock(self.ui, vfs, lockname, timeout, warntimeout,
Boris Feld
lock: add a trylock method handling the timeout and messaging logic...
r35209 releasefn=releasefn,
acquirefn=acquirefn, desc=desc,
inheritchecker=inheritchecker,
Yuya Nishihara
lock: add internal config to not replace signal handlers while locking...
r38157 parentlock=parentlock,
signalsafe=signalsafe)
Benoit Boissinot
localrepo: refactor the locking functions
r1751 return l
Matt Mackall
localrepo: rename _postrelease to _afterlock
r15587 def _afterlock(self, callback):
Pierre-Yves David
afterlock: add the callback to the top level lock (issue4608)...
r24821 """add a callback to be run when the repository is fully unlocked
Pierre-Yves David
lock: add mechanism to register post release callback
r15583
Pierre-Yves David
afterlock: add the callback to the top level lock (issue4608)...
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
else: # no lock have been found.
Mads Kiilerich
tag: run commit hook when lock is released (issue3344)
r16680 callback()
Pierre-Yves David
lock: add mechanism to register post release callback
r15583
Matt Mackall
repo locks: use True/False
r4914 def lock(self, wait=True):
Greg Ward
localrepo: document the locking scheme a little better...
r9309 '''Lock the repository store (.hg/store) and return a weak reference
to the lock. Use this before modifying the store (e.g. committing or
Pierre-Yves David
lock: update the docstring with order information...
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
'wlock' first to avoid a dead-lock hazard.'''
Pierre-Yves David
develwarn: use the lock helper in local repo...
r29705 l = self._currentlock(self._lockref)
if l is not None:
Ronny Pfannschmidt
made repo locks recursive and deprecate refcounting based lock releasing...
r8108 l.lock()
return l
Matt Mackall
Make repo locks recursive, eliminate all passing of lock/wlock
r4917
Yuya Nishihara
localrepo: refresh filecache stats only if transaction finished successfully...
r26251 l = self._lock(self.svfs, "lock", wait, None,
Adrian Buehlmann
fncachestore: defer updating the fncache file to a single file open...
r13391 self.invalidate, _('repository %s') % self.origroot)
Matt Mackall
Make repo locks recursive, eliminate all passing of lock/wlock
r4917 self._lockref = weakref.ref(l)
return l
Benoit Boissinot
localrepo: refactor the locking functions
r1751
Siddharth Agarwal
localrepo: prevent wlock from being inherited when a transaction is running...
r26499 def _wlockchecktransaction(self):
if self.currenttransaction() is not None:
raise error.LockInheritanceContractViolation(
'wlock cannot be inherited in the middle of a transaction')
Matt Mackall
repo locks: use True/False
r4914 def wlock(self, wait=True):
Greg Ward
localrepo: document the locking scheme a little better...
r9309 '''Lock the non-store parts of the repository (everything under
.hg except .hg/store) and return a weak reference to the lock.
Pierre-Yves David
lock: update the docstring with order information...
r24746
Use this before modifying files in .hg.
If both 'lock' and 'wlock' must be acquired, ensure you always acquires
'wlock' first to avoid a dead-lock hazard.'''
Pierre-Yves David
wlock: only issue devel warning when actually acquiring the lock...
r24744 l = self._wlockref and self._wlockref()
if l is not None and l.held:
l.lock()
return l
Mads Kiilerich
spelling: trivial spell checking
r26781 # We do not need to check for non-waiting lock acquisition. Such
Pierre-Yves David
wlock: do not warn for non-wait locking...
r24750 # acquisition would not cause dead-lock as they would just fail.
Pierre-Yves David
devel: rename 'all' to 'all-warnings' (BC)...
r25290 if wait and (self.ui.configbool('devel', 'all-warnings')
Pierre-Yves David
wlock: do not warn for non-wait locking...
r24750 or self.ui.configbool('devel', 'check-locks')):
Pierre-Yves David
develwarn: use the lock helper in local repo...
r29705 if self._currentlock(self._lockref) is not None:
Pierre-Yves David
devel-warn: move the develwarn function as a method of the ui object...
r25629 self.ui.develwarn('"wlock" acquired after "lock"')
Benoit Boissinot
add localrepo.wlock for protecting the dirstate...
r1531
Idan Kamara
localrepo: decorate dirstate() with filecache...
r14930 def unlock():
Durham Goode
dirstate: add begin/endparentchange to dirstate...
r22404 if self.dirstate.pendingparentchange():
self.dirstate.invalidate()
else:
FUJIWARA Katsunori
dirstate: make dirstate.write() callers pass transaction object to it...
r26748 self.dirstate.write(None)
Durham Goode
dirstate: add begin/endparentchange to dirstate...
r22404
Idan Kamara
localrepo: drop unnecessary check on wlock unlock...
r18318 self._filecache['dirstate'].refresh()
Idan Kamara
localrepo: decorate dirstate() with filecache...
r14930
FUJIWARA Katsunori
lock: take both vfs and lock file path relative to vfs to access via vfs...
r20091 l = self._lock(self.vfs, "wlock", wait, unlock,
Idan Kamara
localrepo: decorate dirstate() with filecache...
r14930 self.invalidatedirstate, _('working directory of %s') %
Siddharth Agarwal
localrepo: prevent wlock from being inherited when a transaction is running...
r26499 self.origroot,
inheritchecker=self._wlockchecktransaction,
parentenvvar='HG_WLOCK_LOCKER')
Matt Mackall
Make repo locks recursive, eliminate all passing of lock/wlock
r4917 self._wlockref = weakref.ref(l)
return l
Benoit Boissinot
add localrepo.wlock for protecting the dirstate...
r1531
Siddharth Agarwal
localrepo: add a way to get the current lock if it's held...
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
localrepo: add a way to get the current wlock if it's held...
r26489 def currentwlock(self):
"""Returns the wlock if it's held, or None if it's not."""
return self._currentlock(self._wlockref)
Matt Mackall
filecommit: swallow some bits from _commitctx, add _
r8401 def _filecommit(self, fctx, manifest1, manifest2, linkrev, tr, changelist):
Matt Mackall
merge: remember rename copies and parents properly on commit...
r3292 """
Matt Mackall
commit: unify file-level commit code
r3294 commit an individual file as part of a larger transaction
"""
Matt Mackall
merge: remember rename copies and parents properly on commit...
r3292
Martijn Pieters
localrepo: Refactor var names in filecommit to improve readability.
r8244 fname = fctx.path()
fparent1 = manifest1.get(fname, nullid)
Matt Mackall
commit: catch changed exec bit on files from p1 (issue4382)
r22492 fparent2 = manifest2.get(fname, nullid)
Mads Kiilerich
localrepo: reuse commit of parent filectx entries without rehashing...
r24394 if isinstance(fctx, context.filectx):
node = fctx.filenode()
if node in [fparent1, fparent2]:
self.ui.debug('reusing %s filelog entry\n' % fname)
Mateusz Kwapich
localrepo: prevent executable-bit only changes from being lost on amend...
r29181 if manifest1.flags(fname) != fctx.flags():
changelist.append(fname)
Mads Kiilerich
localrepo: reuse commit of parent filectx entries without rehashing...
r24394 return node
Matt Mackall
Refactor excessive merge detection, add test
r1716
Mads Kiilerich
localrepo: reuse commit of parent filectx entries without rehashing...
r24394 flog = self.file(fname)
Matt Mackall
merge: remember rename copies and parents properly on commit...
r3292 meta = {}
Martijn Pieters
localrepo: Refactor var names in filecommit to improve readability.
r8244 copy = fctx.renamed()
if copy and copy[0] != fname:
Alexis S. L. Carvalho
filecommit: don't forget the local parent on a merge with a local rename
r4058 # Mark the new revision of this file as a copy of another
Thomas Arendsen Hein
Removed trailing whitespace and tabs from python files
r4516 # file. This copy data will effectively act as a parent
# of this new revision. If this is a merge, the first
Alexis S. L. Carvalho
filecommit: don't forget the local parent on a merge with a local rename
r4058 # parent will be the nullid (meaning "look up the copy data")
# and the second one will be the other parent. For example:
#
# 0 --- 1 --- 3 rev1 changes file foo
# \ / rev2 renames foo to bar and changes it
# \- 2 -/ rev3 should have bar with all changes and
# should record that bar descends from
# bar in rev2 and foo in rev1
#
# this allows this merge to succeed:
#
# 0 --- 1 --- 3 rev4 reverts the content change from rev2
# \ / merging rev3 and rev4 should use bar@rev2
# \- 2 --- 4 as the merge base
#
Matt Mackall
commit: simplify file copy logic
r6874
Martijn Pieters
localrepo: Refactor var names in filecommit to improve readability.
r8244 cfname = copy[0]
crev = manifest1.get(cfname)
newfparent = fparent2
Matt Mackall
commit: simplify file copy logic
r6874
if manifest2: # branch merge
Martijn Pieters
localrepo: Refactor var names in filecommit to improve readability.
r8244 if fparent2 == nullid or crev is None: # copied on remote side
if cfname in manifest2:
crev = manifest2[cfname]
newfparent = fparent1
Matt Mackall
commit: simplify file copy logic
r6874
Ryan McElroy
commit: remove reverse search for copy source when not in parent (issue4476)...
r23929 # Here, we used to search backwards through history to try to find
# where the file copy came from if the source of a copy was not in
Mads Kiilerich
spelling: fixes from proofreading of spell checker issues
r24180 # the parent directory. However, this doesn't actually make sense to
Ryan McElroy
commit: remove reverse search for copy source when not in parent (issue4476)...
r23929 # do (what does a copy from something not in your working copy even
# mean?) and it causes bugs (eg, issue4476). Instead, we will warn
# the user that copy information was dropped, so if they didn't
# expect this outcome it can be fixed, but this is the correct
# behavior in this circumstance.
Matt Mackall
add a fix for issue 1175...
r6875
Matt Mackall
commit: search both parents for missing copy revision (issue2484)...
r13000 if crev:
self.ui.debug(" %s: copy %s:%s\n" % (fname, cfname, hex(crev)))
meta["copy"] = cfname
meta["copyrev"] = hex(crev)
fparent1, fparent2 = nullid, newfparent
else:
self.ui.warn(_("warning: can't find ancestor for '%s' "
"copied from '%s'!\n") % (fname, cfname))
Mads Kiilerich
localrepo: commit: avoid calling expensive ancestor function when p1 is nullrev
r20556 elif fparent1 == nullid:
fparent1, fparent2 = fparent2, nullid
Martijn Pieters
localrepo: Refactor var names in filecommit to improve readability.
r8244 elif fparent2 != nullid:
Matt Mackall
Refactor excessive merge detection, add test
r1716 # is one parent an ancestor of the other?
Mads Kiilerich
localrepo: use commonancestorsheads for checking linear heritage in file commit...
r21106 fparentancestors = flog.commonancestorsheads(fparent1, fparent2)
Mads Kiilerich
commit: use revlog.commonancestors instead of .ancestor...
r20987 if fparent1 in fparentancestors:
Martijn Pieters
localrepo: Refactor var names in filecommit to improve readability.
r8244 fparent1, fparent2 = fparent2, nullid
Mads Kiilerich
commit: use revlog.commonancestors instead of .ancestor...
r20987 elif fparent2 in fparentancestors:
Martijn Pieters
localrepo: Refactor var names in filecommit to improve readability.
r8244 fparent2 = nullid
Matt Mackall
Refactor excessive merge detection, add test
r1716
Matt Mackall
filecommit: swallow some bits from _commitctx, add _
r8401 # is the file changed?
Mads Kiilerich
localrepo: reuse commit of parent filectx entries without rehashing...
r24394 text = fctx.data()
Matt Mackall
filecommit: swallow some bits from _commitctx, add _
r8401 if fparent2 != nullid or flog.cmp(fparent1, text) or meta:
changelist.append(fname)
return flog.add(text, meta, tr, linkrev, fparent1, fparent2)
# are just the flags changed during merge?
Matt Mackall
commit: catch changed exec bit on files from p1 (issue4382)
r22492 elif fname in manifest1 and manifest1.flags(fname) != fctx.flags():
Matt Mackall
filecommit: swallow some bits from _commitctx, add _
r8401 changelist.append(fname)
return fparent1
Matt Mackall
Refactor excessive merge detection, add test
r1716
timeless
localrepo: refactor commit argument check as checkcommitpatterns
r28813 def checkcommitpatterns(self, wctx, vdirs, match, status, fail):
Mads Kiilerich
spelling: fixes of non-dictionary words
r30332 """check for commit arguments that aren't committable"""
timeless
localrepo: drop force check from checkcommitpatterns...
r28814 if match.isexact() or match.prefix():
timeless
localrepo: refactor commit argument check as checkcommitpatterns
r28813 matched = set(status.modified + status.added + status.removed)
for f in match.files():
f = self.dirstate.normalize(f)
if f == '.' or f in matched or f in wctx.substate:
continue
if f in status.deleted:
fail(f, _('file not found!'))
if f in vdirs: # visited directory
d = f + '/'
for mf in matched:
if mf.startswith(d):
break
else:
fail(f, _("no match under directory!"))
elif f not in self.dirstate:
fail(f, _("file not tracked!"))
Pierre-Yves David
clfilter: rename `unfilteredmeth` to `unfilteredmethod`...
r18016 @unfilteredmethod
Matt Mackall
commit: drop the now-unused files parameter
r8706 def commit(self, text="", user=None, date=None, match=None, force=False,
Pierre-Yves David
commit: remove a mutable default argument...
r26322 editor=False, extra=None):
Benoit Boissinot
localrepo: update commit*() docstrings
r8515 """Add a new revision to current repository.
Matt Mackall
commit: drop the now-unused files parameter
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
localrepo: update commit*() docstrings
r8515 """
Pierre-Yves David
commit: remove a mutable default argument...
r26322 if extra is None:
extra = {}
Matt Mackall
commit: move explicit file checking into repo.commit
r8709
Matt Mackall
commit: move some setup outside the lock
r8715 def fail(f, msg):
Pierre-Yves David
error: get Abort from 'error' instead of 'util'...
r26587 raise error.Abort('%s: %s' % (f, msg))
Matt Mackall
commit: move some setup outside the lock
r8715
if not match:
Benoit Boissinot
style: use consistent variable names (*mod) with imports which would shadow
r10651 match = matchmod.always(self.root, '')
Matt Mackall
commit: move some setup outside the lock
r8715
if not force:
vdirs = []
Siddharth Agarwal
localrepo.commit: hook into match.explicitdir
r19138 match.explicitdir = vdirs.append
Matt Mackall
commit: move some setup outside the lock
r8715 match.bad = fail
Laurent Charignon
localrepo: put bookmark move following commit in one transaction...
r26998 wlock = lock = tr = None
Matt Mackall
Use try/finally pattern to cleanup locks and transactions
r4915 try:
Laurent Charignon
localrepo: put bookmark move following commit in one transaction...
r26998 wlock = self.wlock()
FUJIWARA Katsunori
commit: make commit acquire store lock before processing for consistency...
r27291 lock = self.lock() # for recent changelog (see issue4368)
Matt Mackall
commit: recurse into subrepositories
r8813 wctx = self[None]
Benoit Boissinot
localrepo.commit: use explicit variables, avoid creating new contexts
r10970 merge = len(wctx.parents()) > 1
mpm@selenic.com
Break apart hg.py...
r1089
Martin von Zweigbergk
match: remove ispartial()...
r32312 if not force and merge and not match.always():
Pierre-Yves David
error: get Abort from 'error' instead of 'util'...
r26587 raise error.Abort(_('cannot partially commit a merge '
Matt Mackall
remove deprecated rawcommit
r8397 '(do not specify files or patterns)'))
Patrick Mezard
localrepo: replace dirstate by workingfilectx in filecommit()
r6706
Martin von Zweigbergk
localrepo: access status fields by name rather than index
r22928 status = self.status(match=match, clean=force)
Matt Mackall
commit: drop the now-unused files parameter
r8706 if force:
Martin von Zweigbergk
localrepo: access status fields by name rather than index
r22928 status.modified.extend(status.clean) # mq may commit clean files
Benoit Boissinot
localrepo: factor commit and rawcommit...
r3621
Matt Mackall
commit: recurse into subrepositories
r8813 # check subrepos
Yuya Nishihara
subrepo: split non-core functions to new module...
r36026 subs, commitsubs, newstate = subrepoutil.precommit(
Yuya Nishihara
subrepo: extract preprocess of repo.commit() to free function...
r35018 self.ui, wctx, status, match, force=force)
Matt Mackall
commit: recurse into subrepositories
r8813
Matt Mackall
commit: move explicit file checking into repo.commit
r8709 # make sure all explicit patterns are matched
timeless
localrepo: refactor commit argument check as checkcommitpatterns
r28813 if not force:
self.checkcommitpatterns(wctx, vdirs, match, status, fail)
Matt Mackall
commit: move explicit file checking into repo.commit
r8709
FUJIWARA Katsunori
context: add workingcommitctx for exact context to be committed...
r23710 cctx = context.workingcommitctx(self, status,
text, user, date, extra)
David Schleimer
localrepo: create context used for actual commit earlier...
r18659
Matt Mackall
commit: mark internal-only option
r25840 # internal config: ui.allowemptycommit
Pierre-Yves David
commit: no longer allow empty commit with the 'force' argument (API)...
r25021 allowemptycommit = (wctx.branch() != wctx.p1().branch()
Durham Goode
commit: add ui.allowemptycommit config option...
r25018 or extra.get('close') or merge or cctx.files()
or self.ui.configbool('ui', 'allowemptycommit'))
Durham Goode
commit: move empty commit condition to a new line...
r25017 if not allowemptycommit:
Matt Mackall
commit: move 'nothing changed' test into commit()
r8404 return None
David Schleimer
localrepo: use workingctx for validation in commit...
r18660 if merge and cctx.deleted():
Pierre-Yves David
error: get Abort from 'error' instead of 'util'...
r26587 raise error.Abort(_("cannot commit merge with missing files"))
Patrick Mezard
commit: abort on merge with missing files...
r16536
Siddharth Agarwal
localrepo.commit: switch to mergestate.read()...
r26996 ms = mergemod.mergestate.read(self)
Augie Fackler
localrepo: refer to checkunresolved by its new name
r30496 mergeutil.checkunresolved(ms)
Matt Mackall
commit: move editor outside transaction...
r8496
if editor:
Matt Mackall
commit: report modified subrepos in commit editor
r8994 cctx._text = editor(self, cctx, subs)
Greg Ward
commit: if relevant, tell user their commit message was saved....
r9935 edited = (text != cctx._text)
Matt Mackall
commit: recurse into subrepositories
r8813
FUJIWARA Katsunori
localrepo: save manually edited commit message as soon as possible...
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
subrepo: rewrite handling of subrepo state at commit (issue2403)...
r16073 # commit subs and write new state
if subs:
for s in sorted(commitsubs):
Edouard Gomez
subrepo: print paths relative to upper repo root for push/pull/commit...
r11112 sub = wctx.sub(s)
self.ui.status(_('committing subrepository %s\n') %
Yuya Nishihara
subrepo: split non-core functions to new module...
r36026 subrepoutil.subrelpath(sub))
Edouard Gomez
subrepo: print paths relative to upper repo root for push/pull/commit...
r11112 sr = sub.commit(cctx._text, user, date)
Matt Mackall
subrepo: rewrite handling of subrepo state at commit (issue2403)...
r16073 newstate[s] = (newstate[s][0], sr)
Yuya Nishihara
subrepo: split non-core functions to new module...
r36026 subrepoutil.writestate(self, newstate)
Matt Mackall
commit: recurse into subrepositories
r8813
Benoit Boissinot
localrepo.commit: use explicit variables, avoid creating new contexts
r10970 p1, p2 = self.dirstate.parents()
hookp1, hookp2 = hex(p1), (p2 != nullid and hex(p2) or '')
Greg Ward
commit: if relevant, tell user their commit message was saved....
r9935 try:
Brodie Rao
cleanup: eradicate long lines
r16683 self.hook("precommit", throw=True, parent1=hookp1,
parent2=hookp2)
Laurent Charignon
localrepo: put bookmark move following commit in one transaction...
r26998 tr = self.transaction('commit')
Greg Ward
commit: if relevant, tell user their commit message was saved....
r9935 ret = self.commitctx(cctx, True)
Brodie Rao
check-code: ignore naked excepts with a "re-raise" comment...
r16705 except: # re-raises
Greg Ward
commit: if relevant, tell user their commit message was saved....
r9935 if edited:
self.ui.write(
_('note: commit message saved in %s\n') % msgfn)
raise
Matt Mackall
bookmarks: move commit action into core
r13357 # update bookmarks, dirstate and mergestate
David Soria Parra
bookmarks: delete divergent bookmarks on merge
r16706 bookmarks.update(self, [p1, p2], ret)
David Schleimer
commit: factor out post-commit cleanup into workingctx...
r18661 cctx.markcommitted(ret)
Matt Mackall
commit: tidy up mergestate slightly
r8503 ms.reset()
Laurent Charignon
localrepo: put bookmark move following commit in one transaction...
r26998 tr.close()
Patrick Mezard
localrepo: extract _commitctx() from commit()...
r6710 finally:
Laurent Charignon
localrepo: put bookmark move following commit in one transaction...
r26998 lockmod.release(tr, lock, wlock)
Patrick Mezard
localrepo: extract _commitctx() from commit()...
r6710
Mads Kiilerich
tag: run commit hook when lock is released (issue3344)
r16680 def commithook(node=hex(ret), parent1=hookp1, parent2=hookp2):
Pierre-Yves David
hook: protect commit hooks against stripping of temporary commit (issue4422)...
r23129 # hack for command that use a temporary commit (eg: histedit)
# temporary commit got stripped before hook release
FUJIWARA Katsunori
localrepo: use changelog.hasnode instead of self.__contains__...
r24992 if self.changelog.hasnode(ret):
Pierre-Yves David
hook: protect commit hooks against stripping of temporary commit (issue4422)...
r23129 self.hook("commit", node=node, parent1=parent1,
parent2=parent2)
Mads Kiilerich
tag: run commit hook when lock is released (issue3344)
r16680 self._afterlock(commithook)
Sune Foldager
run commit and update hooks after command completion (issue1827)...
r10492 return ret
Pierre-Yves David
clfilter: rename `unfilteredmeth` to `unfilteredmethod`...
r18016 @unfilteredmethod
Matt Mackall
commit: move editor outside transaction...
r8496 def commitctx(self, ctx, error=False):
Patrick Mezard
context: improve memctx documentation
r7077 """Add a new revision to current repository.
Matt Mackall
commit: combine _commitctx and commitctx, drop unused force argument
r8410 Revision information is passed via the context argument.
Yuya Nishihara
commit: try hard to reuse p1 manifest if nothing changed...
r39147
ctx.files() should list all files involved in this commit, i.e.
modified/added/removed files. On merge, it may be wider than the
ctx.files() to be committed, since any file nodes derived directly
from p1 or p2 are excluded from the committed ctx.files().
Patrick Mezard
context: improve memctx documentation
r7077 """
Patrick Mezard
context: add memctx for memory commits
r6715
Martin von Zweigbergk
commit: remove dead initialization of 'lock'...
r22908 tr = None
Matt Mackall
commitctx: use contexts more fully
r8414 p1, p2 = ctx.p1(), ctx.p2()
Matt Mackall
commitctx: eliminate some variables
r8412 user = ctx.user()
mpm@selenic.com
Break apart hg.py...
r1089
Matt Mackall
commit: move lots of commitctx outside of the repo lock
r8411 lock = self.lock()
try:
Steve Borho
localrepo: add desc parameter to transaction...
r10881 tr = self.transaction("commit")
Matt Mackall
transactions: avoid late tear-down (issue641)...
r4970 trp = weakref.proxy(tr)
mpm@selenic.com
Break apart hg.py...
r1089
Mateusz Kwapich
localrepo: make it possible to reuse manifest when commiting context...
r30566 if ctx.manifestnode():
# reuse an existing manifest revision
Yuya Nishihara
commit: add debug message regarding manifest reuse
r39145 self.ui.debug('reusing known manifest\n')
Mateusz Kwapich
localrepo: make it possible to reuse manifest when commiting context...
r30566 mn = ctx.manifestnode()
files = ctx.files()
elif ctx.files():
Durham Goode
manifest: remove manifest.add and add memmfctx.write...
r30345 m1ctx = p1.manifestctx()
m2ctx = p2.manifestctx()
mctx = m1ctx.copy()
m = mctx.read()
m1 = m1ctx.read()
m2 = m2ctx.read()
Peter Arrenbrecht
localrepo: reuse parent manifest in commitctx if no files have changed...
r14162
# check in files
Martin von Zweigbergk
commit: update file nodeid and flags in the same place...
r22910 added = []
Peter Arrenbrecht
localrepo: reuse parent manifest in commitctx if no files have changed...
r14162 changed = []
Martin von Zweigbergk
commit: reduce scope of 'removed' variable...
r22907 removed = list(ctx.removed())
Peter Arrenbrecht
localrepo: reuse parent manifest in commitctx if no files have changed...
r14162 linkrev = len(self)
Mads Kiilerich
localrepo: show headline notes in commitctx before showing filenames...
r23749 self.ui.note(_("committing files:\n"))
Peter Arrenbrecht
localrepo: reuse parent manifest in commitctx if no files have changed...
r14162 for f in sorted(ctx.modified() + ctx.added()):
self.ui.note(f + "\n")
try:
fctx = ctx[f]
Mads Kiilerich
convert: use None value for missing files instead of overloading IOError...
r22296 if fctx is None:
removed.append(f)
else:
Martin von Zweigbergk
commit: update file nodeid and flags in the same place...
r22910 added.append(f)
m[f] = self._filecommit(fctx, m1, m2, linkrev,
trp, changed)
Augie Fackler
manifest: rename ambiguously-named set to setflag...
r22942 m.setflag(f, fctx.flags())
Gregory Szorc
global: mass rewrite to use modern exception syntax...
r25660 except OSError as inst:
Matt Mackall
Use try/finally pattern to cleanup locks and transactions
r4915 self.ui.warn(_("trouble committing %s!\n") % f)
raise
Gregory Szorc
global: mass rewrite to use modern exception syntax...
r25660 except IOError as inst:
Peter Arrenbrecht
localrepo: reuse parent manifest in commitctx if no files have changed...
r14162 errcode = getattr(inst, 'errno', errno.ENOENT)
if error or errcode and errcode != errno.ENOENT:
self.ui.warn(_("trouble committing %s!\n") % f)
Mads Kiilerich
convert: use None value for missing files instead of overloading IOError...
r22296 raise
mpm@selenic.com
Break apart hg.py...
r1089
Peter Arrenbrecht
localrepo: reuse parent manifest in commitctx if no files have changed...
r14162 # update manifest
removed = [f for f in sorted(removed) if f in m1 or f in m2]
Martin von Zweigbergk
commit: use separate variable for p1 manifest and new manifest...
r22909 drop = [f for f in removed if f in m]
Peter Arrenbrecht
localrepo: reuse parent manifest in commitctx if no files have changed...
r14162 for f in drop:
Martin von Zweigbergk
commit: use separate variable for p1 manifest and new manifest...
r22909 del m[f]
Peter Arrenbrecht
localrepo: reuse parent manifest in commitctx if no files have changed...
r14162 files = changed + removed
Yuya Nishihara
commit: try hard to reuse p1 manifest if nothing changed...
r39147 md = None
if not files:
# if no "files" actually changed in terms of the changelog,
# try hard to detect unmodified manifest entry so that the
# exact same commit can be reproduced later on convert.
md = m1.diff(m, scmutil.matchfiles(self, ctx.files()))
if not files and md:
self.ui.debug('not reusing manifest (no file change in '
'changelog, but manifest differs)\n')
if files or md:
self.ui.note(_("committing manifest\n"))
spectral
narrow: when writing treemanifests, skip inspecting directories outside narrow...
r39704 # we're using narrowmatch here since it's already applied at
# other stages (such as dirstate.walk), so we're already
# ignoring things outside of narrowspec in most cases. The
# one case where we might have files outside the narrowspec
# at this point is merges, and we already error out in the
# case where the merge has files outside of the narrowspec,
# so this is safe.
Yuya Nishihara
commit: try hard to reuse p1 manifest if nothing changed...
r39147 mn = mctx.write(trp, linkrev,
p1.manifestnode(), p2.manifestnode(),
spectral
narrow: when writing treemanifests, skip inspecting directories outside narrow...
r39704 added, drop, match=self.narrowmatch())
Yuya Nishihara
commit: try hard to reuse p1 manifest if nothing changed...
r39147 else:
self.ui.debug('reusing manifest form p1 (listed files '
'actually unchanged)\n')
mn = p1.manifestnode()
Peter Arrenbrecht
localrepo: reuse parent manifest in commitctx if no files have changed...
r14162 else:
Yuya Nishihara
commit: add debug message regarding manifest reuse
r39145 self.ui.debug('reusing manifest from p1 (no file change)\n')
Peter Arrenbrecht
localrepo: reuse parent manifest in commitctx if no files have changed...
r14162 mn = p1.manifestnode()
files = []
mpm@selenic.com
Break apart hg.py...
r1089
Matt Mackall
commit: move description trimming into changelog
r8499 # update changelog
Mads Kiilerich
localrepo: show headline notes in commitctx before showing filenames...
r23749 self.ui.note(_("committing changelog\n"))
Pierre-Yves David
changelog: handle writepending in the transaction...
r23203 self.changelog.delayupdate(tr)
Peter Arrenbrecht
localrepo: reuse parent manifest in commitctx if no files have changed...
r14162 n = self.changelog.add(mn, files, ctx.description(),
Matt Mackall
commit: move description trimming into changelog
r8499 trp, p1.node(), p2.node(),
Matt Mackall
commitctx: eliminate some variables
r8412 user, ctx.date(), ctx.extra().copy())
Sune Foldager
run commit and update hooks after command completion (issue1827)...
r10492 xp1, xp2 = p1.hex(), p2 and p2.hex() or ''
Matt Mackall
Use try/finally pattern to cleanup locks and transactions
r4915 self.hook('pretxncommit', throw=True, node=hex(n), parent1=xp1,
FUJIWARA Katsunori
hook: centralize passing HG_PENDING to external hook process...
r26751 parent2=xp2)
Pierre-Yves David
Add a phases.new-commit option to control minimal phase of new commit...
r15706 # set the new commit is proper phase
Yuya Nishihara
subrepo: split non-core functions to new module...
r36026 targetphase = subrepoutil.newcommitphase(self.ui, ctx)
Pierre-Yves David
Add a phases.new-commit option to control minimal phase of new commit...
r15706 if targetphase:
# retract boundary do not alter parent changeset.
# if a parent have higher the resulting phase will
# be compliant anyway
#
# if minimal phase was 0 we don't need to retract anything
Boris Feld
localrepo: use the 'registernew' function to set the phase of new commit
r33454 phases.registernew(self, tr, targetphase, [n])
Matt Mackall
Use try/finally pattern to cleanup locks and transactions
r4915 tr.close()
return n
finally:
Ronny Pfannschmidt
make transactions work on non-refcounted python implementations
r11230 if tr:
tr.release()
Matt Mackall
commit: push repo lock down into _commitctx
r8405 lock.release()
mpm@selenic.com
Break apart hg.py...
r1089
Pierre-Yves David
clfilter: rename `unfilteredmeth` to `unfilteredmethod`...
r18016 @unfilteredmethod
Idan Kamara
localrepo: introduce destroying function
r18310 def destroying(self):
'''Inform the repository that nodes are about to be destroyed.
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.
'''
Idan Kamara
localrepo: write the phasecache when destroying nodes
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.
if '_phasecache' in vars(self):
self._phasecache.write()
Idan Kamara
localrepo: introduce destroying function
r18310 @unfilteredmethod
Pierre-Yves David
destroyed: drop complex branchcache rebuilt logic...
r18395 def destroyed(self):
Greg Ward
localrepo: add destroyed() method for strip/rollback to use (issue548).
r9150 '''Inform the repository that nodes have been destroyed.
Intended for use by strip and rollback, so there's a common
Joshua Redstone
strip: incrementally update the branchheads cache after a strip...
r17013 place for anything that has to be done after destroying history.
'''
Idan Kamara
localrepo: filter unknown nodes from the phasecache on destroyed...
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
localrepo: always write the filtered phasecache when nodes are destroyed (issue3827)...
r18757 self._phasecache.filterunknown(self)
self._phasecache.write()
Idan Kamara
localrepo: filter unknown nodes from the phasecache on destroyed...
r18221
Pierre-Yves David
caches: call 'repo.updatecache()' in 'repo.destroyed()'...
r32264 # refresh all repository caches
self.updatecaches()
Pierre-Yves David
destroyed: filter unknown before computing branchcache...
r18223
Greg Ward
tags: implement persistent tag caching (issue548)....
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
destroyed: keep the filecache in sync with __dict__ (issue3335) (issue3693) (issue3743)...
r18313 self.invalidate()
Idan Kamara
localrepo: clear the filecache on _rollback() and destroyed()...
r17324
Matt Mackall
status: use contexts
r6769 def status(self, node1='.', node2=None, match=None,
Martin Geisler
status: recurse into subrepositories with --subrepos/-S flag
r12166 ignored=False, clean=False, unknown=False,
listsubrepos=False):
Sean Farley
localrepo: replace status method with a shim...
r21596 '''a convenience method that calls node1.status(node2)'''
return self[node1].status(node2, match, ignored, clean, unknown,
listsubrepos)
Vadim Gelfer
status: add -c (clean) and -A (all files) options...
r2661
Siddharth Agarwal
workingctx: add a way for extensions to run code at status fixup time...
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
localrepo: remove 'closed' argument to heads(...) function...
r8796 def heads(self, start=None):
Stanislau Hlebik
localrepo: avoid unnecessary conversion from node to rev...
r30875 if start is None:
Stanislau Hlebik
localrepo: cache self.changelog in local variable...
r30905 cl = self.changelog
Stanislau Hlebik
localrepo: avoid unnecessary sorting...
r30906 headrevs = reversed(cl.headrevs())
Stanislau Hlebik
localrepo: cache self.changelog in local variable...
r30905 return [cl.node(rev) for rev in headrevs]
Stanislau Hlebik
localrepo: avoid unnecessary conversion from node to rev...
r30875
Benoit Boissinot
add a -r/--rev option to heads to show only heads descendant from rev
r1550 heads = self.changelog.heads(start)
# sort the output in rev descending order
Thomas Arendsen Hein
coding style: fix gratuitous whitespace after Python keywords
r13075 return sorted(heads, key=self.changelog.rev, reverse=True)
mpm@selenic.com
Break apart hg.py...
r1089
John Mulligan
localrepo: set heads and branchheads to be closed=False by default...
r8694 def branchheads(self, branch=None, start=None, closed=False):
Sune Foldager
localrepo: fix bugs in branchheads and add docstring...
r9475 '''return a (possibly filtered) list of heads for the given branch
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.
'''
Matt Mackall
use repo[changeid] to get a changectx
r6747 if branch is None:
branch = self[None].branch()
Benoit Boissinot
localrepo/branchcache: remove lbranchmap(), convert users to use utf-8 names...
r9675 branches = self.branchmap()
Eric Hopper
Add option to heads to show only heads for current branch.
r4648 if branch not in branches:
return []
John Mulligan
store all heads of a branch in the branch cache...
r7654 # the cache returns heads ordered lowest to highest
Brodie Rao
localrepo: refactor repo.branchheads() to use repo.branchmap().branchheads()
r20189 bheads = list(reversed(branches.branchheads(branch, closed=closed)))
Eric Hopper
Add option to heads to show only heads for current branch.
r4648 if start is not None:
John Mulligan
store all heads of a branch in the branch cache...
r7654 # filter out the heads that cannot be reached from startrev
Sune Foldager
localrepo: fix bugs in branchheads and add docstring...
r9475 fbheads = set(self.changelog.nodesbetween([start], bheads)[2])
bheads = [h for h in bheads if h in fbheads]
John Mulligan
store all heads of a branch in the branch cache...
r7654 return bheads
Eric Hopper
Add option to heads to show only heads for current branch.
r4648
mpm@selenic.com
Break apart hg.py...
r1089 def branches(self, nodes):
Thomas Arendsen Hein
Cleanup of indentation, spacing, newlines, strings and line length
r1615 if not nodes:
nodes = [self.changelog.tip()]
mpm@selenic.com
Break apart hg.py...
r1089 b = []
for n in nodes:
t = n
Martin Geisler
check-code: flag 0/1 used as constant Boolean expression
r14494 while True:
mpm@selenic.com
Break apart hg.py...
r1089 p = self.changelog.parents(n)
if p[1] != nullid or p[0] == nullid:
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
Matt Mackall
wire protocol: avoid infinite loop (issue1483)
r7708 while n != bottom and n != nullid:
mpm@selenic.com
Break apart hg.py...
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
push: pass a `pushoperation` object to localrepo.checkpush...
r20924 def checkpush(self, pushop):
Patrick Mezard
mq: factor out push conditions checks...
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
localrepo: introduce "prepushoutgoinghooks" to extend outgoing check easily...
r21043 @unfilteredpropertycache
def prepushoutgoinghooks(self):
Mads Kiilerich
localrepo: refactor prepushoutgoinghook to take a pushop...
r28876 """Return util.hooks consists of a pushop with repo, remote, outgoing
methods, which are called before pushing changesets.
FUJIWARA Katsunori
localrepo: introduce "prepushoutgoinghooks" to extend outgoing check easily...
r21043 """
return util.hooks()
Matt Mackall
pushkey: add localrepo support
r11368 def pushkey(self, namespace, key, old, new):
Pierre-Yves David
pushkey: gracefully handle prepushkey hook failure (issue4455)...
r23416 try:
Pierre-Yves David
pushkey: use hook arguments from transaction when one exists...
r24824 tr = self.currenttransaction()
hookargs = {}
if tr is not None:
hookargs.update(tr.hookargs)
Pulkit Goyal
py3: fix handling of keyword arguments at more places...
r36418 hookargs = pycompat.strkwargs(hookargs)
hookargs[r'namespace'] = namespace
hookargs[r'key'] = key
hookargs[r'old'] = old
hookargs[r'new'] = new
Pierre-Yves David
pushkey: use hook arguments from transaction when one exists...
r24824 self.hook('prepushkey', throw=True, **hookargs)
Gregory Szorc
global: mass rewrite to use modern exception syntax...
r25660 except error.HookAbort as exc:
Pierre-Yves David
pushkey: gracefully handle prepushkey hook failure (issue4455)...
r23416 self.ui.write_err(_("pushkey-abort: %s\n") % exc)
if exc.hint:
self.ui.write_err(_("(%s)\n") % exc.hint)
return False
Pierre-Yves David
pushkey: add more verbose debug output regarding pushkey...
r17293 self.ui.debug('pushing key for "%s:%s"\n' % (namespace, key))
Brodie Rao
pushkey: add hooks for pushkey/listkeys
r14102 ret = pushkey.push(self, namespace, key, old, new)
Pierre-Yves David
pushkey: run hook after the lock release...
r23648 def runhook():
self.hook('pushkey', namespace=namespace, key=key, old=old, new=new,
ret=ret)
self._afterlock(runhook)
Brodie Rao
pushkey: add hooks for pushkey/listkeys
r14102 return ret
Matt Mackall
pushkey: add localrepo support
r11368
def listkeys(self, namespace):
Brodie Rao
pushkey: add hooks for pushkey/listkeys
r14102 self.hook('prelistkeys', throw=True, namespace=namespace)
Pierre-Yves David
pushkey: add more verbose debug output regarding pushkey...
r17293 self.ui.debug('listing keys for "%s"\n' % namespace)
Brodie Rao
pushkey: add hooks for pushkey/listkeys
r14102 values = pushkey.list(self, namespace)
self.hook('listkeys', namespace=namespace, values=values)
return values
Matt Mackall
pushkey: add localrepo support
r11368
Peter Arrenbrecht
wireproto: add test for new optional arg missing on server...
r14048 def debugwireargs(self, one, two, three=None, four=None, five=None):
Peter Arrenbrecht
debug: add debugwireargs to test argument passing over the wire...
r13720 '''used to test argument passing over the wire'''
Pulkit Goyal
py3: use pycompat.bytestr() to convert None to bytes...
r36572 return "%s %s %s %s %s" % (one, two, pycompat.bytestr(three),
pycompat.bytestr(four),
pycompat.bytestr(five))
Matt Mackall
pushkey: add localrepo support
r11368
Patrick Mezard
localrepo: add savecommitmessage() to write last-message.txt
r14529 def savecommitmessage(self, text):
Angel Ezquerra
localrepo: remove all internal uses of localrepo.opener...
r23852 fp = self.vfs('last-message.txt', 'wb')
Patrick Mezard
localrepo: add savecommitmessage() to write last-message.txt
r14529 try:
fp.write(text)
finally:
fp.close()
Mads Kiilerich
check-code: there must also be whitespace between ')' and operator...
r18054 return self.pathto(fp.name[len(self.root) + 1:])
Patrick Mezard
localrepo: add savecommitmessage() to write last-message.txt
r14529
mason@suse.com
Automatic nesting into running transactions in the same repository....
r1806 # used to avoid circular references so destructors work
Benoit Boissinot
localrepo: change aftertrans to be independant of the store path
r3790 def aftertrans(files):
renamefiles = [tuple(t) for t in files]
mason@suse.com
Automatic nesting into running transactions in the same repository....
r1806 def a():
FUJIWARA Katsunori
localrepo: use "vfs.rename()" instead of "util.rename()"...
r18952 for vfs, src, dest in renamefiles:
Ryan McElroy
localrepo: use tryunlink
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
localrepo: handle rename with hardlinks properly...
r31209 try:
FUJIWARA Katsunori
localrepo: use "vfs.rename()" instead of "util.rename()"...
r18952 vfs.rename(src, dest)
Alain Leufroy
localrepo: do not complain about missing journal files
r16441 except OSError: # journal file does not yet exist
pass
mason@suse.com
Automatic nesting into running transactions in the same repository....
r1806 return a
Alexander Solovyov
fix bookmarks rollback behavior...
r14266 def undoname(fn):
base, name = os.path.split(fn)
assert name.startswith('journal')
return os.path.join(base, name.replace('journal', 'undo', 1))
Gregory Szorc
hg: allow extra arguments to be passed to repo creation (API)...
r39585 def instance(ui, path, create, intents=None, createopts=None):
Martin von Zweigbergk
localrepo: use urllocalpath() for path to create repo too...
r39627 localpath = util.urllocalpath(path)
Gregory Szorc
localrepo: move repo creation logic out of localrepository.__init__ (API)...
r39584 if create:
Martin von Zweigbergk
localrepo: use urllocalpath() for path to create repo too...
r39627 createrepository(ui, localpath, createopts=createopts)
Gregory Szorc
localrepo: move repo creation logic out of localrepository.__init__ (API)...
r39584
Gregory Szorc
localrepo: create new function for instantiating a local repo object...
r39723 return makelocalrepository(ui, localpath, intents=intents)
Thomas Arendsen Hein
Whitespace/Tab cleanup
r3223
Vadim Gelfer
clean up hg.py: move repo constructor code into each repo module
r2740 def islocal(path):
return True
Gregory Szorc
localrepo: move new repo requirements into standalone function (API)...
r28164
Gregory Szorc
localrepo: define storage backend in creation options (API)...
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 {})
if 'backend' not in createopts:
# experimental config: storage.new-repo-backend
createopts['backend'] = ui.config('storage', 'new-repo-backend')
return createopts
def newreporequirements(ui, createopts):
Gregory Szorc
localrepo: move new repo requirements into standalone function (API)...
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
localrepo: support shared repo creation...
r39884 # If the repo is being created from a shared repository, we copy
# its requirements.
if 'sharedrepo' in createopts:
requirements = set(createopts['sharedrepo'].requirements)
if createopts.get('sharedrelative'):
requirements.add('relshared')
else:
requirements.add('shared')
return requirements
Gregory Szorc
localrepo: define storage backend in creation options (API)...
r40032 if 'backend' not in createopts:
raise error.ProgrammingError('backend key not present in createopts; '
'was defaultcreateopts() called?')
if createopts['backend'] != 'revlogv1':
raise error.Abort(_('unable to determine repository requirements for '
'storage backend: %s') % createopts['backend'])
Martin von Zweigbergk
cleanup: use set literals...
r32291 requirements = {'revlogv1'}
configitems: register the 'format.usestore' config
r33244 if ui.configbool('format', 'usestore'):
Gregory Szorc
localrepo: move new repo requirements into standalone function (API)...
r28164 requirements.add('store')
configitems: register the 'format.usefncache' config
r33242 if ui.configbool('format', 'usefncache'):
Gregory Szorc
localrepo: move new repo requirements into standalone function (API)...
r28164 requirements.add('fncache')
configitems: register the 'format.dotencode' config
r33234 if ui.configbool('format', 'dotencode'):
Gregory Szorc
localrepo: move new repo requirements into standalone function (API)...
r28164 requirements.add('dotencode')
Jun Wu
codemod: register core configitems using a script...
r33499 compengine = ui.config('experimental', 'format.compression')
Gregory Szorc
localrepo: experimental support for non-zlib revlog compression...
r30818 if compengine not in util.compengines:
raise error.Abort(_('compression engine %s defined by '
'experimental.format.compression not available') %
compengine,
hint=_('run "hg debuginstall" to list available '
'compression engines'))
# zlib is the historical default and doesn't need an explicit requirement.
if compengine != 'zlib':
requirements.add('exp-compression-%s' % compengine)
Gregory Szorc
localrepo: move new repo requirements into standalone function (API)...
r28164 if scmutil.gdinitconfig(ui):
requirements.add('generaldelta')
Boris Feld
sparse-revlog: disable sparse-revlog if config disable general-delta...
r40920 if ui.configbool('format', 'sparse-revlog'):
requirements.add(SPARSEREVLOG_REQUIREMENT)
Jun Wu
codemod: register core configitems using a script...
r33499 if ui.configbool('experimental', 'treemanifest'):
Gregory Szorc
localrepo: move new repo requirements into standalone function (API)...
r28164 requirements.add('treemanifest')
Gregory Szorc
revlog: skeleton support for version 2 revlogs...
r32697 revlogv2 = ui.config('experimental', 'revlogv2')
if revlogv2 == 'enable-unstable-format-and-corrupt-my-data':
requirements.remove('revlogv1')
# generaldelta is implied by revlogv2.
requirements.discard('generaldelta')
requirements.add(REVLOGV2_REQUIREMENT)
Boris Feld
phases: add a repository requirement about internal phase...
r39334 # experimental config: format.internal-phase
Gregory Szorc
localrepo: pass ui to newreporequirements() (API)...
r39583 if ui.configbool('format', 'internal-phase'):
Boris Feld
phases: add a repository requirement about internal phase...
r39334 requirements.add('internal-phase')
Gregory Szorc
revlog: skeleton support for version 2 revlogs...
r32697
Gregory Szorc
localrepo: add requirement when narrow files creation option present...
r39587 if createopts.get('narrowfiles'):
requirements.add(repository.NARROW_REQUIREMENT)
Matt Harbison
lfs: autoload the extension when cloning from repo with lfs enabled...
r40360 if createopts.get('lfs'):
requirements.add('lfs')
Gregory Szorc
localrepo: move new repo requirements into standalone function (API)...
r28164 return requirements
Gregory Szorc
localrepo: move repo creation logic out of localrepository.__init__ (API)...
r39584
Gregory Szorc
hg: allow extra arguments to be passed to repo creation (API)...
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
localrepo: support shared repo creation...
r39884 known = {
Gregory Szorc
localrepo: define storage backend in creation options (API)...
r40032 'backend',
Matt Harbison
lfs: autoload the extension when cloning from repo with lfs enabled...
r40360 'lfs',
Gregory Szorc
localrepo: support shared repo creation...
r39884 'narrowfiles',
'sharedrepo',
'sharedrelative',
Gregory Szorc
localrepo: support writing shared file (API)...
r39885 'shareditems',
Gregory Szorc
localrepo: support marking repos as having shallow file storage...
r40426 'shallowfilestore',
Gregory Szorc
localrepo: support shared repo creation...
r39884 }
Gregory Szorc
localrepo: add requirement when narrow files creation option present...
r39587
return {k: v for k, v in createopts.items() if k not in known}
Gregory Szorc
hg: allow extra arguments to be passed to repo creation (API)...
r39585
Martin von Zweigbergk
localrepo: move check for existing repo into createrepository()...
r39626 def createrepository(ui, path, createopts=None):
Gregory Szorc
localrepo: move repo creation logic out of localrepository.__init__ (API)...
r39584 """Create a new repository in a vfs.
Martin von Zweigbergk
localrepo: move check for existing repo into createrepository()...
r39626 ``path`` path to the new repo's working directory.
Martin von Zweigbergk
localrepo: fix a mixmatched arg name in createrepository() docstring...
r39616 ``createopts`` options for the new repository.
Gregory Szorc
localrepo: support shared repo creation...
r39884
The following keys for ``createopts`` are recognized:
Gregory Szorc
localrepo: define storage backend in creation options (API)...
r40032 backend
The storage backend to use.
Matt Harbison
lfs: autoload the extension when cloning from repo with lfs enabled...
r40360 lfs
Repository will be created with ``lfs`` requirement. The lfs extension
will automatically be loaded when the repository is accessed.
Gregory Szorc
localrepo: support shared repo creation...
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
localrepo: support writing shared file (API)...
r39885 shareditems
Set of items to share to the new repository (in addition to storage).
Gregory Szorc
localrepo: support marking repos as having shallow file storage...
r40426 shallowfilestore
Indicates that storage for files should be shallow (not all ancestor
revisions are known).
Gregory Szorc
localrepo: move repo creation logic out of localrepository.__init__ (API)...
r39584 """
Gregory Szorc
localrepo: define storage backend in creation options (API)...
r40032 createopts = defaultcreateopts(ui, createopts=createopts)
Gregory Szorc
hg: allow extra arguments to be passed to repo creation (API)...
r39585
unknownopts = filterknowncreateopts(ui, createopts)
if not isinstance(unknownopts, dict):
raise error.ProgrammingError('filterknowncreateopts() did not return '
'a dict')
if unknownopts:
raise error.Abort(_('unable to create repository because of unknown '
'creation option: %s') %
Gregory Szorc
localrepo: add missing join()...
r39882 ', '.join(sorted(unknownopts)),
Gregory Szorc
hg: allow extra arguments to be passed to repo creation (API)...
r39585 hint=_('is a required extension not loaded?'))
requirements = newreporequirements(ui, createopts=createopts)
Gregory Szorc
localrepo: move repo creation logic out of localrepository.__init__ (API)...
r39584
Martin von Zweigbergk
localrepo: move check for existing repo into createrepository()...
r39626 wdirvfs = vfsmod.vfs(path, expandpath=True, realpath=True)
Gregory Szorc
localrepo: move repo creation logic out of localrepository.__init__ (API)...
r39584
hgvfs = vfsmod.vfs(wdirvfs.join(b'.hg'))
Martin von Zweigbergk
localrepo: move check for existing repo into createrepository()...
r39626 if hgvfs.exists():
raise error.RepoError(_('repository %s already exists') % path)
Gregory Szorc
localrepo: support shared repo creation...
r39884 if 'sharedrepo' in createopts:
sharedpath = createopts['sharedrepo'].sharedpath
if createopts.get('sharedrelative'):
try:
sharedpath = os.path.relpath(sharedpath, hgvfs.base)
except (IOError, ValueError) as e:
# ValueError is raised on Windows if the drive letters differ
# on each path.
raise error.Abort(_('cannot calculate relative path'),
hint=stringutil.forcebytestr(e))
Gregory Szorc
localrepo: validate directories before creating any...
r39883 if not wdirvfs.exists():
wdirvfs.makedirs()
Gregory Szorc
localrepo: move repo creation logic out of localrepository.__init__ (API)...
r39584 hgvfs.makedir(notindexed=True)
Boris Feld
cache: create `cache` directory at init time...
r40824 if 'sharedrepo' not in createopts:
hgvfs.mkdir(b'cache')
Boris Feld
cache: create `wcache` directory at init time...
r40825 hgvfs.mkdir(b'wcache')
Gregory Szorc
localrepo: move repo creation logic out of localrepository.__init__ (API)...
r39584
Gregory Szorc
localrepo: support shared repo creation...
r39884 if b'store' in requirements and 'sharedrepo' not in createopts:
Gregory Szorc
localrepo: move repo creation logic out of localrepository.__init__ (API)...
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.
#
# The revlog header has version 2, which won't be recognized by
# such old clients.
hgvfs.append(b'00changelog.i',
b'\0\0\0\2 dummy changelog to prevent using the old repo '
b'layout')
scmutil.writerequires(hgvfs, requirements)
Gregory Szorc
hg: don't reuse repo instance after unshare()...
r39642
Gregory Szorc
localrepo: support shared repo creation...
r39884 # Write out file telling readers where to find the shared store.
if 'sharedrepo' in createopts:
hgvfs.write(b'sharedpath', sharedpath)
Gregory Szorc
localrepo: support writing shared file (API)...
r39885 if createopts.get('shareditems'):
shared = b'\n'.join(sorted(createopts['shareditems'])) + b'\n'
hgvfs.write(b'shared', shared)
Gregory Szorc
hg: don't reuse repo instance after unshare()...
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):
if item == r'close':
return object.__getattribute__(self, item)
raise error.ProgrammingError('repo instances should not be used '
'after unshare')
def close(self):
pass
# We may have a repoview, which intercepts __setattr__. So be sure
# we operate at the lowest level possible.
object.__setattr__(repo, r'__class__', poisonedrepository)