forked from nautechsystems/nautilus_trader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.py
256 lines (215 loc) · 9.4 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
#!/usr/bin/env python3
import itertools
import os
import platform
import shutil
import subprocess
from datetime import datetime
from pathlib import Path
from typing import List
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
################################################################################
# RUST BUILD
################################################################################
if platform.system() == "Windows":
# Use clang as the default compiler
os.environ["CC"] = "clang"
os.environ["LDSHARED"] = "clang -shared"
# https://docs.microsoft.com/en-US/cpp/error-messages/tool-errors/linker-tools-error-lnk1181?view=msvc-170&viewFallbackFrom=vs-2019
target_dir = os.path.join(os.getcwd(), "nautilus_core", "target", BUILD_MODE)
os.environ["LIBPATH"] = os.environ.get("LIBPATH", "") + f":{target_dir}"
RUST_LIB_PFX = ""
RUST_LIB_EXT = "lib"
TARGET_DIR = "x86_64-pc-windows-msvc/"
else:
RUST_LIB_PFX = "lib"
RUST_LIB_EXT = "a"
TARGET_DIR = ""
# Directories with headers to include
RUST_INCLUDES = [
"nautilus_trader/common/includes",
"nautilus_trader/core/includes",
"nautilus_trader/model/includes",
"nautilus_trader/persistence/includes",
]
RUST_LIBS = [
f"nautilus_core/target/{TARGET_DIR}{BUILD_MODE}/{RUST_LIB_PFX}nautilus_common.{RUST_LIB_EXT}",
f"nautilus_core/target/{TARGET_DIR}{BUILD_MODE}/{RUST_LIB_PFX}nautilus_core.{RUST_LIB_EXT}",
f"nautilus_core/target/{TARGET_DIR}{BUILD_MODE}/{RUST_LIB_PFX}nautilus_model.{RUST_LIB_EXT}",
f"nautilus_core/target/{TARGET_DIR}{BUILD_MODE}/{RUST_LIB_PFX}nautilus_persistence.{RUST_LIB_EXT}",
]
# Later we can be more selective about which libs are included where - to optimize binary sizes
def _build_rust_libs() -> None:
build_options = ""
extra_flags = ""
if platform.system() == "Windows":
extra_flags = " --target x86_64-pc-windows-msvc"
elif platform.machine() == "arm64":
build_options = " --features extension-module"
build_options += " --release" if BUILD_MODE == "release" else ""
# Build the Rust libraries using Cargo
print("Compiling Rust libraries...")
build_cmd = f"(cd nautilus_core && cargo build{build_options}{extra_flags})"
print(build_cmd)
os.system(build_cmd) # noqa
################################################################################
# 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.emit_code_comments = True
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)
"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 = [("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 = []
if BUILD_MODE == "release" and platform.system() != "Windows":
extra_compile_args.append("-O3")
extra_compile_args.append("-pipe")
extra_link_args = RUST_LIBS
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:
# Build a Distribution using cythonize()
# Determine the build output directory
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"
print(f"build_dir={build_dir}")
distribution = Distribution(
dict(
name="nautilus_trader",
ext_modules=cythonize(
module_list=extensions,
compiler_directives=CYTHON_COMPILER_DIRECTIVES,
nthreads=os.cpu_count(),
build_dir=build_dir,
gdb_debug=PROFILE_MODE,
),
zip_safe=False,
)
)
distribution.package_dir = "nautilus_trader"
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 = os.path.relpath(output, cmd.build_lib)
if not os.path.exists(output):
continue
# Copy the file and set permissions
shutil.copyfile(output, relative_extension)
mode = os.stat(relative_extension).st_mode
mode |= (mode & 0o444) >> 2
os.chmod(relative_extension, mode)
print("Copied all compiled dynamic library files into source")
def build() -> None:
"""Construct the extensions and distribution.""" # noqa
_build_rust_libs()
# 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 __name__ == "__main__":
print("\033[36m")
print("=====================================================================")
print("Nautilus Builder")
print("=====================================================================\033[0m")
ts_start = datetime.utcnow()
# Work around a Cython problem in Python 3.8.x on macOS
# https://github.com/cython/cython/issues/3262
if platform.system() == "Darwin":
print("macOS: Setting multiprocessing method to 'fork'.")
try:
# noinspection PyUnresolvedReferences
import multiprocessing
multiprocessing.set_start_method("fork", force=True)
except ImportError: # pragma: no cover
print("multiprocessing not available")
rustc_version = subprocess.check_output(["rustc", "--version"]) # noqa
print(f"System: {platform.system()} {platform.machine()}")
print(f"Rust: {rustc_version.lstrip(b'rustc ').decode()[:-1]}")
print(f"Python: {platform.python_version()}")
print(f"Cython: {cython_compiler_version}")
print(f"NumPy: {np.__version__}")
print("")
print("Starting build...")
print(f"BUILD_MODE={BUILD_MODE}")
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("")
build()
print(f"Build time: {datetime.utcnow() - ts_start}")
print("\033[32m" + "Build completed" + "\033[0m")