Mercurial > hg-stable
changeset 46229:52abb1af2995
engine: prevent a function call for each store file
Python function calls are not cheap. Instead of calling the function once for
each file in store, we use a dedicated function which filters and yields the
required files.
Differential Revision: https://phab.mercurial-scm.org/D9673
author | Pulkit Goyal <7895pulkit@gmail.com> |
---|---|
date | Thu, 31 Dec 2020 14:28:00 +0530 |
parents | e73b40c790ec |
children | 1fcab88ab85c |
files | mercurial/upgrade_utils/engine.py |
diffstat | 1 files changed, 19 insertions(+), 36 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/upgrade_utils/engine.py Tue Jan 12 18:36:22 2021 +0100 +++ b/mercurial/upgrade_utils/engine.py Thu Dec 31 14:28:00 2020 +0530 @@ -376,36 +376,25 @@ ) -def _filterstorefile(srcrepo, dstrepo, requirements, path, mode, st): - """Determine whether to copy a store file during upgrade. - - This function is called when migrating store files from ``srcrepo`` to - ``dstrepo`` as part of upgrading a repository. - - Args: - srcrepo: repo we are copying from - dstrepo: repo we are copying to - requirements: set of requirements for ``dstrepo`` - path: store file being examined - mode: the ``ST_MODE`` file type of ``path`` - st: ``stat`` data structure for ``path`` +def _files_to_copy_post_revlog_clone(srcrepo): + """yields files which should be copied to destination after revlogs + are cloned""" + for path, kind, st in sorted(srcrepo.store.vfs.readdir(b'', stat=True)): + # don't copy revlogs as they are already cloned + if path.endswith((b'.i', b'.d', b'.n', b'.nd')): + continue + # Skip transaction related files. + if path.startswith(b'undo'): + continue + # Only copy regular files. + if kind != stat.S_IFREG: + continue + # Skip other skipped files. + if path in (b'lock', b'fncache'): + continue + # TODO: should we skip cache too? - Function should return ``True`` if the file is to be copied. - """ - # Skip revlogs. - if path.endswith((b'.i', b'.d', b'.n', b'.nd')): - return False - # Skip transaction related files. - if path.startswith(b'undo'): - return False - # Only copy regular files. - if mode != stat.S_IFREG: - return False - # Skip other skipped files. - if path in (b'lock', b'fncache'): - return False - - return True + yield path def _replacestores(currentrepo, upgradedrepo, backupvfs, upgrade_op): @@ -465,13 +454,7 @@ ) # Now copy other files in the store directory. - # The sorted() makes execution deterministic. - for p, kind, st in sorted(srcrepo.store.vfs.readdir(b'', stat=True)): - if not _filterstorefile( - srcrepo, dstrepo, upgrade_op.new_requirements, p, kind, st - ): - continue - + for p in _files_to_copy_post_revlog_clone(srcrepo): srcrepo.ui.status(_(b'copying %s\n') % p) src = srcrepo.store.rawvfs.join(p) dst = dstrepo.store.rawvfs.join(p)