##// END OF EJS Templates
rebase: move actual rebase into a single transaction...
rebase: move actual rebase into a single transaction Previously, rebasing would open several transaction over the course of rebasing several commits. Opening a transaction can have notable overhead (like copying the dirstate) which can add up when rebasing many commits. This patch adds a single large transaction around the actual commit rebase operation, with a catch for intervention which serializes the current state if we need to drop back to the terminal for user intervention. Amazingly, almost all the tests seem to pass. On large repos with large working copies, this can speed up rebasing 7 commits by 25%. I'd expect the percentage to be a bit larger for rebasing even more commits. There are minor test changes because we're rolling back the entire transaction during unexpected exceptions instead of just stopping mid-rebase, so there's no more backup bundle. It also leave an unknown file in the working copy, since our clean up 'hg update' doesn't delete unknown files.

File last commit:

r30895:c32454d6 default
r31226:cf8ad0e6 default
Show More
setup_zstd.py
96 lines | 2.5 KiB | text/x-python | PythonLexer
Gregory Szorc
zstd: vendor python-zstandard 0.5.0...
r30435 # Copyright (c) 2016-present, Gregory Szorc
# All rights reserved.
#
# This software may be modified and distributed under the terms
# of the BSD license. See the LICENSE file for details.
import os
from distutils.extension import Extension
zstd_sources = ['zstd/%s' % p for p in (
'common/entropy_common.c',
'common/error_private.c',
'common/fse_decompress.c',
Gregory Szorc
zstd: vendor python-zstandard 0.7.0...
r30895 'common/pool.c',
'common/threading.c',
Gregory Szorc
zstd: vendor python-zstandard 0.5.0...
r30435 'common/xxhash.c',
'common/zstd_common.c',
'compress/fse_compress.c',
'compress/huf_compress.c',
'compress/zstd_compress.c',
'decompress/huf_decompress.c',
'decompress/zstd_decompress.c',
Gregory Szorc
zstd: vendor python-zstandard 0.7.0...
r30895 'dictBuilder/cover.c',
Gregory Szorc
zstd: vendor python-zstandard 0.5.0...
r30435 'dictBuilder/divsufsort.c',
'dictBuilder/zdict.c',
)]
Gregory Szorc
zstd: vendor python-zstandard 0.6.0...
r30822 zstd_sources_legacy = ['zstd/%s' % p for p in (
Gregory Szorc
zstd: vendor python-zstandard 0.7.0...
r30895 'deprecated/zbuff_common.c',
Gregory Szorc
zstd: vendor python-zstandard 0.6.0...
r30822 'deprecated/zbuff_compress.c',
'deprecated/zbuff_decompress.c',
'legacy/zstd_v01.c',
'legacy/zstd_v02.c',
'legacy/zstd_v03.c',
'legacy/zstd_v04.c',
'legacy/zstd_v05.c',
'legacy/zstd_v06.c',
'legacy/zstd_v07.c'
)]
Gregory Szorc
zstd: vendor python-zstandard 0.5.0...
r30435
zstd_includes = [
'c-ext',
'zstd',
'zstd/common',
'zstd/compress',
'zstd/decompress',
'zstd/dictBuilder',
]
Gregory Szorc
zstd: vendor python-zstandard 0.6.0...
r30822 zstd_includes_legacy = [
'zstd/deprecated',
'zstd/legacy',
]
Gregory Szorc
zstd: vendor python-zstandard 0.5.0...
r30435 ext_sources = [
'zstd.c',
'c-ext/compressiondict.c',
'c-ext/compressobj.c',
'c-ext/compressor.c',
'c-ext/compressoriterator.c',
'c-ext/compressionparams.c',
'c-ext/compressionwriter.c',
'c-ext/constants.c',
'c-ext/decompressobj.c',
'c-ext/decompressor.c',
'c-ext/decompressoriterator.c',
'c-ext/decompressionwriter.c',
'c-ext/dictparams.c',
Gregory Szorc
zstd: vendor python-zstandard 0.7.0...
r30895 'c-ext/frameparams.c',
Gregory Szorc
zstd: vendor python-zstandard 0.5.0...
r30435 ]
Gregory Szorc
zstd: vendor python-zstandard 0.6.0...
r30822 zstd_depends = [
'c-ext/python-zstandard.h',
]
Gregory Szorc
zstd: vendor python-zstandard 0.5.0...
r30435
Gregory Szorc
zstd: vendor python-zstandard 0.6.0...
r30822
def get_c_extension(support_legacy=False, name='zstd'):
Gregory Szorc
zstd: vendor python-zstandard 0.5.0...
r30435 """Obtain a distutils.extension.Extension for the C extension."""
root = os.path.abspath(os.path.dirname(__file__))
sources = [os.path.join(root, p) for p in zstd_sources + ext_sources]
Gregory Szorc
zstd: vendor python-zstandard 0.6.0...
r30822 if support_legacy:
sources.extend([os.path.join(root, p) for p in zstd_sources_legacy])
Gregory Szorc
zstd: vendor python-zstandard 0.5.0...
r30435 include_dirs = [os.path.join(root, d) for d in zstd_includes]
Gregory Szorc
zstd: vendor python-zstandard 0.6.0...
r30822 if support_legacy:
include_dirs.extend([os.path.join(root, d) for d in zstd_includes_legacy])
depends = [os.path.join(root, p) for p in zstd_depends]
Gregory Szorc
zstd: vendor python-zstandard 0.5.0...
r30435
# TODO compile with optimizations.
return Extension(name, sources,
Gregory Szorc
zstd: vendor python-zstandard 0.6.0...
r30822 include_dirs=include_dirs,
depends=depends,
extra_compile_args=["-DZSTD_LEGACY_SUPPORT=1"] if support_legacy else [])