forked from nautechsystems/nautilus_trader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.py
342 lines (291 loc) · 12.1 KB
/
build.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
#!/usr/bin/env python3
import itertools
import os
import platform
import shutil
import subprocess
import sysconfig
from datetime import datetime
from pathlib import Path
from typing import Optional
import numpy as np
from Cython.Build import build_ext
from Cython.Build import cythonize
from Cython.Compiler import Options
from Cython.Compiler.Version import version as cython_compiler_version
from setuptools import Distribution
from setuptools import Extension
# The build mode (affects cargo)
BUILD_MODE = os.getenv("BUILD_MODE", "release")
# If PROFILE_MODE mode is enabled, include traces necessary for coverage and profiling
PROFILE_MODE = bool(os.getenv("PROFILE_MODE", ""))
# If ANNOTATION mode is enabled, generate an annotated HTML version of the input source files
ANNOTATION_MODE = bool(os.getenv("ANNOTATION_MODE", ""))
# If PARALLEL build is enabled, uses all CPUs for compile stage of build
PARALLEL_BUILD = True if os.getenv("PARALLEL_BUILD", "true") == "true" else False
# If COPY_TO_SOURCE is enabled, copy built *.so files back into the source tree
COPY_TO_SOURCE = True if os.getenv("COPY_TO_SOURCE", "true") == "true" else False
# If PyO3 only then don't build C extensions to reduce compilation time
PYO3_ONLY = False if os.getenv("PYO3_ONLY", "") == "" else True
if PROFILE_MODE:
# For subsequent debugging, the C source needs to be in the same tree as
# the Cython code (not in a separate build directory).
BUILD_DIR = None
elif ANNOTATION_MODE:
BUILD_DIR = "build/annotated"
else:
BUILD_DIR = "build/optimized"
################################################################################
# RUST BUILD
################################################################################
if platform.system() != "Darwin":
# Use clang as the default compiler
os.environ["CC"] = "clang"
os.environ["LDSHARED"] = "clang -shared"
TARGET_DIR = Path.cwd() / "nautilus_core" / "target" / BUILD_MODE
if platform.system() == "Windows":
# Linker error 1181
# https://docs.microsoft.com/en-US/cpp/error-messages/tool-errors/linker-tools-error-lnk1181?view=msvc-170&viewFallbackFrom=vs-2019
RUST_LIB_PFX = ""
RUST_STATIC_LIB_EXT = "lib"
RUST_DYLIB_EXT = "dll"
elif platform.system() == "Darwin":
RUST_LIB_PFX = "lib"
RUST_STATIC_LIB_EXT = "a"
RUST_DYLIB_EXT = "dylib"
else: # Linux
RUST_LIB_PFX = "lib"
RUST_STATIC_LIB_EXT = "a"
RUST_DYLIB_EXT = "so"
# Directories with headers to include
RUST_INCLUDES = ["nautilus_trader/core/includes"]
RUST_LIB_PATHS: list[Path] = [
TARGET_DIR / f"{RUST_LIB_PFX}nautilus_backtest.{RUST_STATIC_LIB_EXT}",
TARGET_DIR / f"{RUST_LIB_PFX}nautilus_common.{RUST_STATIC_LIB_EXT}",
TARGET_DIR / f"{RUST_LIB_PFX}nautilus_core.{RUST_STATIC_LIB_EXT}",
TARGET_DIR / f"{RUST_LIB_PFX}nautilus_model.{RUST_STATIC_LIB_EXT}",
TARGET_DIR / f"{RUST_LIB_PFX}nautilus_persistence.{RUST_STATIC_LIB_EXT}",
]
RUST_LIBS: list[str] = [str(path) for path in RUST_LIB_PATHS]
def _build_rust_libs() -> None:
try:
# Build the Rust libraries using Cargo
build_options = " --release" if BUILD_MODE == "release" else ""
print("Compiling Rust libraries...")
cmd_args = [
"cargo",
"build",
*build_options.split(),
"--all-features",
]
print(" ".join(cmd_args))
subprocess.run(
cmd_args, # noqa
cwd="nautilus_core",
check=True,
)
except subprocess.CalledProcessError as e:
raise RuntimeError(
f"Error running cargo: {e.stderr.decode()}",
) from e
################################################################################
# CYTHON BUILD
################################################################################
# https://cython.readthedocs.io/en/latest/src/userguide/source_files_and_compilation.html
Options.docstrings = True # Include docstrings in modules
Options.fast_fail = True # Abort the compilation on the first error occurred
Options.annotate = ANNOTATION_MODE # Create annotated HTML files for each .pyx
if ANNOTATION_MODE:
Options.annotate_coverage_xml = "coverage.xml"
Options.fast_fail = True # Abort compilation on first error
Options.warning_errors = True # Treat compiler warnings as errors
Options.extra_warnings = True
CYTHON_COMPILER_DIRECTIVES = {
"language_level": "3",
"cdivision": True, # If division is as per C with no check for zero (35% speed up)
"nonecheck": True, # Insert extra check for field access on C extensions
"embedsignature": True, # If docstrings should be embedded into C signatures
"profile": PROFILE_MODE, # If we're debugging or profiling
"linetrace": PROFILE_MODE, # If we're debugging or profiling
"warn.maybe_uninitialized": True,
}
def _build_extensions() -> list[Extension]:
# Regarding the compiler warning: #warning "Using deprecated NumPy API,
# disable it with " "#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION"
# https://stackoverflow.com/questions/52749662/using-deprecated-numpy-api
# From the Cython docs: "For the time being, it is just a warning that you can ignore."
define_macros: list[tuple[str, Optional[str]]] = [
("NPY_NO_DEPRECATED_API", "NPY_1_7_API_VERSION"),
]
if PROFILE_MODE or ANNOTATION_MODE:
# Profiling requires special macro directives
define_macros.append(("CYTHON_TRACE", "1"))
extra_compile_args = []
extra_link_args = RUST_LIBS
if platform.system() == "Darwin":
extra_compile_args.append("-Wno-unreachable-code-fallthrough")
extra_link_args.append("-flat_namespace")
extra_link_args.append("-undefined")
extra_link_args.append("suppress")
if platform.system() != "Windows":
# Suppress warnings produced by Cython boilerplate
extra_compile_args.append("-Wno-parentheses-equality")
if BUILD_MODE == "release":
extra_compile_args.append("-O2")
extra_compile_args.append("-pipe")
if platform.system() == "Windows":
extra_link_args += [
"WS2_32.Lib",
"AdvAPI32.Lib",
"UserEnv.Lib",
"bcrypt.lib",
]
print("Creating C extension modules...")
print(f"define_macros={define_macros}")
print(f"extra_compile_args={extra_compile_args}")
return [
Extension(
name=str(pyx.relative_to(".")).replace(os.path.sep, ".")[:-4],
sources=[str(pyx)],
include_dirs=[np.get_include(), *RUST_INCLUDES],
define_macros=define_macros,
language="c",
extra_link_args=extra_link_args,
extra_compile_args=extra_compile_args,
)
for pyx in itertools.chain(Path("nautilus_trader").rglob("*.pyx"))
]
def _build_distribution(extensions: list[Extension]) -> Distribution:
nthreads = os.cpu_count() or 1
if platform.system() == "Windows":
nthreads = min(nthreads, 60)
print(f"nthreads={nthreads}")
distribution = Distribution(
dict(
name="nautilus_trader",
ext_modules=cythonize(
module_list=extensions,
compiler_directives=CYTHON_COMPILER_DIRECTIVES,
nthreads=nthreads,
build_dir=BUILD_DIR,
gdb_debug=PROFILE_MODE,
),
zip_safe=False,
),
)
return distribution
def _copy_build_dir_to_project(cmd: build_ext) -> None:
# Copy built extensions back to the project tree
for output in cmd.get_outputs():
relative_extension = Path(output).relative_to(cmd.build_lib)
if not Path(output).exists():
continue
# Copy the file and set permissions
shutil.copyfile(output, relative_extension)
mode = relative_extension.stat().st_mode
mode |= (mode & 0o444) >> 2
relative_extension.chmod(mode)
print("Copied all compiled dynamic library files into source")
def _copy_rust_dylibs_to_project() -> None:
# https://pyo3.rs/latest/building_and_distribution#manual-builds
ext_suffix = sysconfig.get_config_var("EXT_SUFFIX")
src = Path(TARGET_DIR) / f"{RUST_LIB_PFX}nautilus_pyo3.{RUST_DYLIB_EXT}"
dst = Path("nautilus_trader/core") / f"nautilus_pyo3{ext_suffix}"
shutil.copyfile(src=src, dst=dst)
print(f"Copied {src} to {dst}")
def _get_clang_version() -> str:
try:
result = subprocess.run(
["clang", "--version"], # noqa
check=True,
capture_output=True,
)
output = (
result.stdout.decode()
.splitlines()[0]
.lstrip("Apple ")
.lstrip("Ubuntu ")
.lstrip("clang version ")
)
return output
except subprocess.CalledProcessError as e:
raise RuntimeError(
"You are installing from source which requires the Clang compiler to be installed.\n"
f"Error running clang: {e.stderr.decode()}",
) from e
def _get_rustc_version() -> str:
try:
result = subprocess.run(
["rustc", "--version"], # noqa
check=True,
capture_output=True,
)
output = result.stdout.decode().lstrip("rustc ")[:-1]
return output
except subprocess.CalledProcessError as e:
raise RuntimeError(
"You are installing from source which requires the Rust compiler to be installed.\n"
"Find more information at https://www.rust-lang.org/tools/install\n"
f"Error running rustc: {e.stderr.decode()}",
) from e
def _strip_unneeded_symbols() -> None:
try:
print("Stripping unneeded symbols from binaries...")
for so in itertools.chain(Path("nautilus_trader").rglob("*.so")):
if platform.system() == "Linux":
strip_cmd = f"strip --strip-unneeded {so}"
elif platform.system() == "Darwin":
strip_cmd = f"strip -x {so}"
else:
raise RuntimeError(f"Cannot strip symbols for platform {platform.system()}")
subprocess.run(
strip_cmd, # noqa
check=True,
shell=True, # noqa
capture_output=True,
)
except subprocess.CalledProcessError as e:
raise RuntimeError(f"Error when stripping symbols.\n{e.stderr.decode()}") from e
def build() -> None:
"""Construct the extensions and distribution."""
_build_rust_libs()
_copy_rust_dylibs_to_project()
if not PYO3_ONLY:
# Create C Extensions to feed into cythonize()
extensions = _build_extensions()
distribution = _build_distribution(extensions)
# Build and run the command
print("Compiling C extension modules...")
cmd: build_ext = build_ext(distribution)
if PARALLEL_BUILD:
cmd.parallel = os.cpu_count()
cmd.ensure_finalized()
cmd.run()
if COPY_TO_SOURCE:
# Copy the build back into the source tree for development and wheel packaging
_copy_build_dir_to_project(cmd)
if platform.system() in ("Linux", "Darwin"):
_strip_unneeded_symbols()
if __name__ == "__main__":
print("\033[36m")
print("=====================================================================")
print("Nautilus Builder")
print("=====================================================================\033[0m")
print(f"System: {platform.system()} {platform.machine()}")
print(f"Clang: {_get_clang_version()}")
print(f"Rust: {_get_rustc_version()}")
print(f"Python: {platform.python_version()}")
print(f"Cython: {cython_compiler_version}")
print(f"NumPy: {np.__version__}\n")
print(f"BUILD_MODE={BUILD_MODE}")
print(f"BUILD_DIR={BUILD_DIR}")
print(f"PROFILE_MODE={PROFILE_MODE}")
print(f"ANNOTATION_MODE={ANNOTATION_MODE}")
print(f"PARALLEL_BUILD={PARALLEL_BUILD}")
print(f"COPY_TO_SOURCE={COPY_TO_SOURCE}")
print(f"PYO3_ONLY={PYO3_ONLY}\n")
print("Starting build...")
ts_start = datetime.utcnow()
build()
print(f"Build time: {datetime.utcnow() - ts_start}")
print("\033[32m" + "Build completed" + "\033[0m")