forked from apache/kvrocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
x.py
executable file
·396 lines (319 loc) · 16.2 KB
/
x.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
#!/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
from os import makedirs
from pathlib import Path
import re
from subprocess import Popen, PIPE
import sys
from typing import List, Any, Optional, TextIO, Tuple
CMAKE_REQUIRE_VERSION = (3, 16, 0)
CLANG_FORMAT_REQUIRED_VERSION = (12, 0, 0)
CLANG_TIDY_REQUIRED_VERSION = (12, 0, 0)
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,
)
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) -> TextIO:
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 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")
makedirs(dir, exist_ok=True)
cmake_options = ["-DCMAKE_BUILD_TYPE=RelWithDebInfo"]
if ghproxy:
cmake_options.append("-DDEPS_FETCH_PROXY=https://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_str = re.search(r'version\s+((?:\w|\.)+)', version_res).group(1)
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_str = re.search(r'version\s+((?:\w|\.)+)', version_res).group(1)
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 golangci_lint() -> None:
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'
if not binpath.exists():
output = run_pipe('curl', '-sfL', 'https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh',
verbose=True)
run('sh', '-s', '--', '-b', str(bindir), 'v1.49.0', verbose=True, stdin=output)
basedir = Path(__file__).parent.absolute() / 'tests' / 'gocase'
run(str(binpath), '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'[source-release] prepare release apache-kvrocks-{version}')
if release_candidate_number is None:
run(git, 'tag', '-a', f'v{version}', '-m', f'[source-release] copy for tag v{version}')
else:
run(git, 'tag', '-a', f'v{version}-rc{release_candidate_number}', '-m', f'[source-release] copy for tag v{version}-rc{release_candidate_number}')
# 2. Create the source tarball
folder = f'apache-kvrocks-{version}-incubating-src'
tarball = f'apache-kvrocks-{version}-incubating-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
sha512sum = find_command('sha512sum', msg='sha512sum is required for source packaging')
with open(f'{tarball}.sha512', 'w+') as f:
run(sha512sum, 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)
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_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://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)
args = parser.parse_args()
arg_dict = dict(vars(args))
del arg_dict['func']
args.func(**arg_dict)