x.py (347 lines of code) (raw):

#!/usr/bin/env python3 # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information # regarding copyright ownership. The ASF licenses this file # to you under the Apache License, Version 2.0 (the # "License"); you may not use this file except in compliance # with the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, # software distributed under the License is distributed on an # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. from argparse import ArgumentParser, ArgumentDefaultsHelpFormatter, REMAINDER from glob import glob import os from pathlib import Path import re import filecmp from subprocess import Popen, PIPE import sys from typing import List, Any, Optional, IO, Tuple from shutil import which CMAKE_REQUIRE_VERSION = (3, 16, 0) CLANG_FORMAT_REQUIRED_VERSION = (12, 0, 0) CLANG_TIDY_REQUIRED_VERSION = (12, 0, 0) GOLANGCI_LINT_REQUIRED_VERSION = (1, 64, 3) SEMVER_REGEX = re.compile( r""" ^ (?P<major>0|[1-9]\d*) \. (?P<minor>0|[1-9]\d*) \. (?P<patch>0|[1-9]\d*) (?:-(?P<prerelease> (?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*) (?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))* ))? (?:\+(?P<build> [0-9a-zA-Z-]+ (?:\.[0-9a-zA-Z-]+)* ))? $ """, re.VERBOSE, ) # NOTE: the return type should be Popen[str], but Popen is not subscriptable before python 3.9 def run(*args: str, msg: Optional[str] = None, verbose: bool = False, **kwargs: Any) -> Popen: sys.stdout.flush() if verbose: print(f"$ {' '.join(args)}") p = Popen(args, **kwargs) code = p.wait() if code != 0: err = f"\nfailed to run: {args}\nexit with code: {code}\n" if msg: err += f"error message: {msg}\n" raise RuntimeError(err) return p def run_pipe(*args: str, msg: Optional[str] = None, verbose: bool = False, **kwargs: Any) -> IO[str]: p = run(*args, msg=msg, verbose=verbose, stdout=PIPE, universal_newlines=True, **kwargs) return p.stdout # type: ignore def find_command(command: str, msg: Optional[str] = None) -> str: return run_pipe("which", command, msg=msg).read().strip() def check_version(current: str, required: Tuple[int, int, int], prog_name: Optional[str] = None) -> Tuple[ int, int, int]: require_version = '.'.join(map(str, required)) semver_match = SEMVER_REGEX.match(current) if semver_match is None: raise RuntimeError(f"{prog_name} {require_version} or higher is required, got: {current}") semver_dict = semver_match.groupdict() semver = (int(semver_dict["major"]), int(semver_dict["minor"]), int(semver_dict["patch"])) if semver < required: raise RuntimeError(f"{prog_name} {require_version} or higher is required, got: {current}") return semver def prepare() -> None: basedir = Path(__file__).parent.absolute() # Install Git hooks hooks = basedir / "dev" / "hooks" git_hooks = basedir / ".git" / "hooks" git_hooks.mkdir(exist_ok=True) for hook in hooks.iterdir(): dst = git_hooks / hook.name if dst.exists(): if filecmp.cmp(hook, dst, shallow=False): print(f"{hook.name} already installed.") continue raise RuntimeError(f"{dst} already exists; please remove it first") else: dst.symlink_to(hook) print(f"{hook.name} installed at {dst}.") def build(dir: str, jobs: Optional[int], ghproxy: bool, ninja: bool, unittest: bool, compiler: str, cmake_path: str, D: List[str], skip_build: bool) -> None: basedir = Path(__file__).parent.absolute() find_command("autoconf", msg="autoconf is required to build jemalloc") cmake = find_command(cmake_path, msg="CMake is required") output = run_pipe(cmake, "-version") output = run_pipe("head", "-n", "1", stdin=output) output = run_pipe("awk", "{print $(NF)}", stdin=output) cmake_version = output.read().strip() check_version(cmake_version, CMAKE_REQUIRE_VERSION, "CMake") os.makedirs(dir, exist_ok=True) cmake_options = ["-DCMAKE_BUILD_TYPE=RelWithDebInfo"] if ghproxy: cmake_options.append("-DDEPS_FETCH_PROXY=https://mirror.ghproxy.com/") if ninja: cmake_options.append("-G Ninja") if compiler == 'gcc': cmake_options += ["-DCMAKE_C_COMPILER=gcc", "-DCMAKE_CXX_COMPILER=g++"] elif compiler == 'clang': cmake_options += ["-DCMAKE_C_COMPILER=clang", "-DCMAKE_CXX_COMPILER=clang++"] if D: cmake_options += [f"-D{o}" for o in D] run(cmake, str(basedir), *cmake_options, verbose=True, cwd=dir) if skip_build: return target = ["kvrocks", "kvrocks2redis"] if unittest: target.append("unittest") options = ["--build", "."] if jobs is not None: options.append(f"-j{jobs}") options += ["-t", *target] run(cmake, *options, verbose=True, cwd=dir) def get_source_files(dir: Path) -> List[str]: return [ *glob(str(dir / "src/**/*.h"), recursive=True), *glob(str(dir / "src/**/*.cc"), recursive=True), *glob(str(dir / "tests/cppunit/**/*.h"), recursive=True), *glob(str(dir / "tests/cppunit/**/*.cc"), recursive=True), *glob(str(dir / "utils/kvrocks2redis/**/*.h"), recursive=True), *glob(str(dir / "utils/kvrocks2redis/**/*.cc"), recursive=True), ] def clang_format(clang_format_path: str, fix: bool = False) -> None: command = find_command(clang_format_path, msg="clang-format is required") version_res = run_pipe(command, '--version').read().strip() version_re_res = re.search(r'version\s+((?:\w|\.)+)', version_res) if version_re_res: version_str = version_re_res.group(1) else: raise RuntimeError(f"version not found in `{command} --version`") check_version(version_str, CLANG_FORMAT_REQUIRED_VERSION, "clang-format") basedir = Path(__file__).parent.absolute() sources = get_source_files(basedir) if fix: options = ['-i'] else: options = ['--dry-run', '--Werror'] run(command, *options, *sources, verbose=True, cwd=basedir) def clang_tidy(dir: str, jobs: Optional[int], clang_tidy_path: str, run_clang_tidy_path: str, fix: bool) -> None: # use the run-clang-tidy Python script provided by LLVM Clang run_command = find_command(run_clang_tidy_path, msg="run-clang-tidy is required") tidy_command = find_command(clang_tidy_path, msg="clang-tidy is required") version_res = run_pipe(tidy_command, '--version').read().strip() version_re_res = re.search(r'version\s+((?:\w|\.)+)', version_res) if version_re_res: version_str = version_re_res.group(1) else: raise RuntimeError(f"version not found in `{tidy_command} --version`") check_version(version_str, CLANG_TIDY_REQUIRED_VERSION, "clang-tidy") if not (Path(dir) / 'compile_commands.json').exists(): raise RuntimeError(f"expect compile_commands.json in build directory {dir}") basedir = Path(__file__).parent.absolute() options = ['-p', dir, '-clang-tidy-binary', tidy_command] if jobs is not None: options.append(f'-j{jobs}') options.extend(['-fix'] if fix else []) regexes = ['kvrocks/src/', 'utils/kvrocks2redis/', 'tests/cppunit/'] options.append(f'-header-filter={"|".join(regexes)}') run(run_command, *options, *regexes, verbose=True, cwd=basedir) def env_with_cgo_flags(build_dir: Path): rocksdb_inc = build_dir.joinpath('_deps/rocksdb-src/include') rocksdb_lib = build_dir.joinpath('_deps/rocksdb-build') zlib_lib = build_dir.joinpath('_deps/zstd-src/lib') lz4_lib = build_dir.joinpath('_deps/lz4-src/lib') snappy_lib = build_dir.joinpath('_deps/snappy-build') env = os.environ.copy() env.update({ "CGO_CFLAGS": f"-I{rocksdb_inc} {env.get('CGO_CFLAGS', '')}", "CGO_LDFLAGS": f"-L{rocksdb_lib} -L{zlib_lib} -L{lz4_lib} -L{snappy_lib} {env.get('CGO_LDFLAGS', '')}", }) return env def golangci_lint(golangci_lint_path: str) -> None: def get_gopath() -> Tuple[Path, Path]: go = find_command('go', msg='go is required for testing') gopath = run_pipe(go, 'env', 'GOPATH').read().strip() bindir = Path(gopath).absolute() / 'bin' binpath = bindir / 'golangci-lint' return bindir, binpath def get_syspath(sys_path: str) -> Tuple[str, str]: golangci_command = find_command(sys_path, msg="golangci-lint is required") version_res = run_pipe(golangci_command, '--version').read().strip() version_re_res = re.search(r'version\s+((?:\w|\.)+)', version_res) if version_re_res: version_str = version_re_res.group(1) else: raise RuntimeError(f"version not found in `{golangci_command} --version`") return golangci_command, version_str def download_package(bindir: str) -> None: output = run_pipe('curl', '-sfL', 'https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh', verbose=True) version_str = 'v' + '.'.join(map(str, GOLANGCI_LINT_REQUIRED_VERSION)) run('sh', '-s', '--', '-b', bindir, version_str, verbose=True, stdin=output) if which(golangci_lint_path) is None: bindir, binpath = get_gopath() binpath_str = str(binpath) if not binpath.exists(): download_package(str(bindir)) else: binpath_str, version_str = get_syspath(golangci_lint_path) check_version(version_str, GOLANGCI_LINT_REQUIRED_VERSION, "golangci-lint") basedir = Path(__file__).parent.absolute() / 'tests' / 'gocase' run(binpath_str, 'run', '-v', './...', cwd=str(basedir), verbose=True) def write_version(release_version: str) -> str: version = release_version.strip() if SEMVER_REGEX.match(version) is None: raise RuntimeError(f"Kvrocks version should follow semver spec, got: {version}") with open('src/VERSION.txt', 'w+') as f: f.write(version) return version def package_source(release_version: str, release_candidate_number: Optional[int]) -> None: # 0. Write input version to VERSION file version = write_version(release_version) # 1. Git commit and tag git = find_command('git', msg='git is required for source packaging') run(git, 'commit', '-a', '-m', f'release: prepare source release apache-kvrocks-{version}') if release_candidate_number is None: run(git, 'tag', '-a', f'v{version}', '-m', f'release: copy for tag v{version}') else: run(git, 'tag', '-a', f'v{version}-rc{release_candidate_number}', '-m', f'release: copy for tag v{version}-rc{release_candidate_number}') # 2. Create the source tarball folder = f'apache-kvrocks-{version}-src' tarball = f'apache-kvrocks-{version}-src.tar.gz' run(git, 'archive', '--format=tar.gz', f'--output={tarball}', f'--prefix={folder}/', 'HEAD') # 3. GPG Sign gpg = find_command('gpg', msg='gpg is required for source packaging') run(gpg, '--detach-sign', '--armor', tarball) # 4. Generate sha512 checksum shasum = find_command('shasum', msg='shasum is required for source packaging') with open(f'{tarball}.sha512', 'w+') as f: run(shasum, '-a', '512', tarball, stdout=f) def test_cpp(dir: str, rest: List[str]) -> None: basedir = Path(dir).absolute() unittest = basedir / 'unittest' run(str(unittest), *rest, cwd=str(basedir), verbose=True) def test_go(dir: str, cli_path: str, rest: List[str]) -> None: go = find_command('go', msg='go is required for testing') find_command(cli_path, msg='redis-cli is required for testing') binpath = Path(dir).absolute() / 'kvrocks' basedir = Path(__file__).parent.absolute() / 'tests' / 'gocase' workspace = basedir / 'workspace' args = [ 'test', '-timeout=1800s', '-bench=.', './...', f'-binPath={binpath}', f'-cliPath={cli_path}', f'-workspace={workspace}', *rest ] run(go, *args, cwd=str(basedir), verbose=True, env=env_with_cgo_flags(Path(dir).absolute())) if __name__ == '__main__': parser = ArgumentParser(formatter_class=ArgumentDefaultsHelpFormatter) parser.set_defaults(func=parser.print_help) subparsers = parser.add_subparsers() parser_format = subparsers.add_parser( 'format', description="Format source code", help="Format source code") parser_format.set_defaults(func=lambda **args: clang_format(**args, fix=True)) parser_format.add_argument('--clang-format-path', default='clang-format', help="path of clang-format used to check source") parser_check = subparsers.add_parser( 'check', description="Check or lint source code", help="Check or lint source code") parser_check.set_defaults(func=parser_check.print_help) parser_check_subparsers = parser_check.add_subparsers() parser_check_format = parser_check_subparsers.add_parser( 'format', description="Check source format by clang-format", help="Check source format by clang-format") parser_check_format.set_defaults(func=lambda **args: clang_format(**args, fix=False)) parser_check_format.add_argument('--clang-format-path', default='clang-format', help="path of clang-format used to check source") parser_check_tidy = parser_check_subparsers.add_parser( 'tidy', description="Check code with clang-tidy", help="Check code with clang-tidy", formatter_class=ArgumentDefaultsHelpFormatter, ) parser_check_tidy.set_defaults(func=clang_tidy) parser_check_tidy.add_argument('dir', metavar='BUILD_DIR', nargs='?', default='build', help="directory to store cmake-generated and build files") parser_check_tidy.add_argument('-j', '--jobs', metavar='N', help='execute N build jobs concurrently') parser_check_tidy.add_argument('--clang-tidy-path', default='clang-tidy', help="path of clang-tidy used to check source") parser_check_tidy.add_argument('--run-clang-tidy-path', default='run-clang-tidy', help="path of run-clang-tidy used to check source") parser_check_tidy.add_argument('--fix', default=False, action='store_true', help='automatically fix codebase via clang-tidy suggested changes') parser_check_golangci_lint = parser_check_subparsers.add_parser( 'golangci-lint', description="Check code with golangci-lint (https://golangci-lint.run/)", help="Check code with golangci-lint (https://golangci-lint.run/)", formatter_class=ArgumentDefaultsHelpFormatter, ) parser_check_golangci_lint.set_defaults(func=golangci_lint) parser_check_golangci_lint.add_argument('--golangci-lint-path', default='golangci-lint', help="path of golangci-lint used to check source") parser_build = subparsers.add_parser( 'build', description="Build executables to BUILD_DIR [default: build]", help="Build executables to BUILD_DIR [default: build]", formatter_class=ArgumentDefaultsHelpFormatter, ) parser_build.add_argument('dir', metavar='BUILD_DIR', nargs='?', default='build', help="directory to store cmake-generated and build files") parser_build.add_argument('-j', '--jobs', metavar='N', help='execute N build jobs concurrently') parser_build.add_argument('--ghproxy', default=False, action='store_true', help='use https://mirror.ghproxy.com to fetch dependencies') parser_build.add_argument('--ninja', default=False, action='store_true', help='use Ninja to build kvrocks') parser_build.add_argument('--unittest', default=False, action='store_true', help='build unittest target') parser_build.add_argument('--compiler', default='auto', choices=('auto', 'gcc', 'clang'), help="compiler used to build kvrocks") parser_build.add_argument('--cmake-path', default='cmake', help="path of cmake binary used to build kvrocks") parser_build.add_argument('-D', action='append', metavar='key=value', help='extra CMake definitions') parser_build.add_argument('--skip-build', default=False, action='store_true', help='runs only the configure stage, skip the build stage') parser_build.set_defaults(func=build) parser_package = subparsers.add_parser( 'package', description="Package the source tarball or binary installer", help="Package the source tarball or binary installer", formatter_class=ArgumentDefaultsHelpFormatter, ) parser_package.set_defaults(func=parser_package.print_help) parser_package_subparsers = parser_package.add_subparsers() parser_package_source = parser_package_subparsers.add_parser( 'source', description="Package the source tarball", help="Package the source tarball", ) parser_package_source.add_argument('-v', '--release-version', required=True, metavar='VERSION', help='current releasing version') parser_package_source.add_argument('-rc', '--release-candidate-number',required=False, type=int, help='current releasing candidate number') parser_package_source.set_defaults(func=package_source) parser_test = subparsers.add_parser( 'test', description="Test against a specific kvrocks build", help="Test against a specific kvrocks build", formatter_class=ArgumentDefaultsHelpFormatter, ) parser_test.set_defaults(func=parser_test.print_help) parser_test_subparsers = parser_test.add_subparsers() parser_test_cpp = parser_test_subparsers.add_parser( 'cpp', description="Test kvrocks via cpp unit tests", help="Test kvrocks via cpp unit tests", ) parser_test_cpp.add_argument('dir', metavar='BUILD_DIR', nargs='?', default='build', help="directory including kvrocks build files") parser_test_cpp.add_argument('rest', nargs=REMAINDER, help="the rest of arguments to forward to cpp unittest") parser_test_cpp.set_defaults(func=test_cpp) parser_test_go = parser_test_subparsers.add_parser( 'go', description="Test kvrocks via go test cases", help="Test kvrocks via go test cases", ) parser_test_go.add_argument('dir', metavar='BUILD_DIR', nargs='?', default='build', help="directory including kvrocks build files") parser_test_go.add_argument('--cli-path', default='redis-cli', help="path of redis-cli to test kvrocks") parser_test_go.add_argument('rest', nargs=REMAINDER, help="the rest of arguments to forward to go test") parser_test_go.set_defaults(func=test_go) parser_prepare = subparsers.add_parser( 'prepare', description="Prepare scripts such as git hooks", help="Prepare scripts such as git hooks" ) parser_prepare.set_defaults(func=prepare) args = parser.parse_args() arg_dict = dict(vars(args)) del arg_dict['func'] args.func(**arg_dict)