-
Notifications
You must be signed in to change notification settings - Fork 93
/
setup.py
218 lines (182 loc) · 9.15 KB
/
setup.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
import os
import subprocess
import sys
import glob
import platform
import shutil
import re
from pathlib import Path
from tempfile import mkdtemp
from setuptools import setup, Command, find_namespace_packages
from setuptools import Extension, find_packages
from setuptools.command.build_ext import build_ext
from setuptools.command.build_py import build_py
from setuptools.command.develop import develop
from wheel.bdist_wheel import bdist_wheel
# experimental flag to indicate that we want
# the dependencies from a conda
ARCTICDB_USING_CONDA = os.environ.get("ARCTICDB_USING_CONDA", "0")
ARCTICDB_USING_CONDA = ARCTICDB_USING_CONDA != "0"
print(f"ARCTICDB_USING_CONDA={ARCTICDB_USING_CONDA}")
# flag to indicate if we want to build the tests
ARCTICDB_BUILD_CPP_TESTS = os.environ.get("ARCTICDB_BUILD_CPP_TESTS", "0")
ARCTICDB_BUILD_CPP_TESTS = ARCTICDB_BUILD_CPP_TESTS != "0"
print(f"ARCTICDB_BUILD_CPP_TESTS={ARCTICDB_BUILD_CPP_TESTS}")
def _log_and_run(*cmd, **kwargs):
print("Running " + " ".join(cmd))
subprocess.check_call(cmd, **kwargs)
class CompileProto(Command):
# When adding new protobuf versions, also update: setup.cfg, python/arcticdb/__init__.py
_PROTOBUF_TO_GRPC_VERSION = {"3": "<1.31", "4": ">=1.49", "5": ">=1.64"}
description = '"protoc" generate code _pb2.py from .proto files'
user_options = [
("build-lib=", "b", "Create the arcticdb/proto/*/arcticc/pb2 subdirectories inside this base directory"),
("proto-vers=", "s", "Single string listing all the protobuf major versions to compile against"),
]
def initialize_options(self):
self.build_lib = None
self.proto_vers = None
def finalize_options(self):
print(self.distribution.commands)
if not self.build_lib:
if "editable_wheel" in self.distribution.commands:
self.build_lib = "python"
else:
# Default to the output location of the build command:
self.set_undefined_options("build", ("build_lib", "build_lib"))
if self.proto_vers is None:
self.proto_vers = os.getenv("ARCTICDB_PROTOC_VERS", "".join(self._PROTOBUF_TO_GRPC_VERSION)).strip()
def run(self):
output_dir = os.path.join(self.build_lib, "arcticdb", "proto")
python = sys.version_info[:2]
print(f"\nProtoc compilation (into '{output_dir}') for versions '{self.proto_vers}':")
for proto_ver in self.proto_vers:
if not ARCTICDB_USING_CONDA and python >= (3, 11) and proto_ver == "3":
# No available on PyPI for this configuration.
# See the last release's: https://pypi.org/project/protobuf/3.20.3/#files
print(f"Python protobuf {proto_ver} is not officially supported on Python {python}. Skipping...")
elif not ARCTICDB_USING_CONDA and python <= (3, 6) and proto_ver >= "4":
# No available on PyPI for this configuration
# See the first release's: https://pypi.org/project/protobuf/4.21.1/#files
print(f"Python protobuf {proto_ver} do not run on Python {python}. Skipping...")
elif not ARCTICDB_USING_CONDA and python <= (3, 7) and proto_ver >= "5":
# Not compatible with Python<=3.7 as
# GRPCIO >= 1.64.0 is not available on Python<=3.7 https://pypi.org/project/grpcio-tools/1.64.0/#files
print(f"Python protobuf {proto_ver} does not run on Python {python}. Skipping...")
else:
self._compile_one_version(proto_ver, os.path.join(output_dir, proto_ver))
def _compile_one_version(self, proto_ver: str, version_output_dir: str):
grpc_version = self._PROTOBUF_TO_GRPC_VERSION.get(proto_ver, None)
assert grpc_version, "Supported proto-vers arguments are " + ", ".join(self._PROTOBUF_TO_GRPC_VERSION)
# Manual virtualenv to avoid hard-coding Man internal locations
pythonpath = mkdtemp()
if not ARCTICDB_USING_CONDA:
# Python protobuf 3 and 4 are incompatible and we do not want to dictate which version of protobuf
# the user can have, so we compile the Python binding files with both versions and dynamically load
# the correct version at run time.
_log_and_run(
sys.executable,
"-mpip",
"install",
"--disable-pip-version-check",
"--target=" + pythonpath,
"grpcio-tools" + grpc_version,
f"protobuf=={proto_ver}.*",
)
env = {**os.environ, "PYTHONPATH": pythonpath, "PYTHONNOUSERSITE": "1"}
else:
# grpcio-tools is already installed in the conda environment (see environment.yml)
env = {**os.environ}
# Compile
os.makedirs(version_output_dir, exist_ok=True)
cmd = [sys.executable, "-mgrpc_tools.protoc", "-Icpp/proto", "--python_out=" + version_output_dir]
_log_and_run(*cmd, *glob.glob(os.path.normpath("cpp/proto/arcticc/pb2/*.proto")), env=env)
shutil.rmtree(pythonpath)
class CompileProtoAndBuild(build_py):
def run(self):
self.run_command("protoc")
build_py.run(self)
class DevelopAndCompileProto(develop):
def install_for_development(self):
super().install_for_development()
self.reinitialize_command("protoc", build_lib=self.egg_base)
self.run_command("protoc") # compile after updating the deps
class CMakeExtension(Extension):
def __init__(self, name, sourcedir=""):
Extension.__init__(self, name, sources=[])
self.sourcedir = os.path.abspath(sourcedir)
class CMakeBuild(build_ext):
def run(self):
for ext in self.extensions:
self.build_extension(ext)
def build_extension(self, ext):
dest = os.path.abspath(self.get_ext_fullpath(ext.name))
print(f"Destination: {dest}")
cmake = shutil.which("cmake") # Windows safe
if not cmake and platform.system() != "Windows":
print("Did not find cmake on the path. Will try to resolve from shell", file=sys.stderr)
cmake = subprocess.check_output(["bash", "-lc", "which cmake | tail -n 1"], universal_newlines=True).strip()
env_var = "ARCTIC_CMAKE_PRESET" # From CMakePresets.json
preset = os.getenv(env_var, "*")
if preset == "skip":
return
if preset == "*":
conda_suffix = "-conda" if ARCTICDB_USING_CONDA else ""
suffix = "-debug" if self.debug else "-release"
suffix = conda_suffix + suffix
preset = ("windows-cl" if platform.system() == "Windows" else platform.system().lower()) + suffix
cmd = [
cmake,
f"-DTEST={ARCTICDB_BUILD_CPP_TESTS}",
f"-DBUILD_PYTHON_VERSION={sys.version_info[0]}.{sys.version_info[1]}",
f"-DCMAKE_INSTALL_PREFIX={os.path.dirname(dest)}",
"--preset",
preset,
]
vcpkg_installed_dir = os.getenv("ARCTICDB_VCPKG_INSTALLED_DIR")
print(f"ARCTICDB_VCPKG_INSTALLED_DIR={vcpkg_installed_dir}")
if vcpkg_installed_dir:
cmd.append(f"-DVCPKG_INSTALLED_DIR={vcpkg_installed_dir}")
_log_and_run(*cmd, cwd="cpp")
search = f"cpp/out/{preset}-build"
candidates = glob.glob(search)
assert len(candidates) == 1, f"Specify {env_var} or use a single build directory. {search}={candidates}"
cmake_build_parallel_level = os.getenv("CMAKE_BUILD_PARALLEL_LEVEL", None)
if not cmake_build_parallel_level:
try:
# Python API is not cgroups-aware yet, so use CMake:
cpu_output = subprocess.check_output([cmake, "-P", "cpp/CMake/CpuCount.cmake"], universal_newlines=True)
jobs = "-j", cpu_output.replace("-- CMAKE_BUILD_PARALLEL_LEVEL=", "").rstrip()
except Exception as e:
print("Failed to retrieve CPU count:", e)
jobs = ()
else:
jobs = "-j", cmake_build_parallel_level
try:
_log_and_run(cmake, "--build", candidates[0], *jobs, "--target", "install_" + ext.name)
finally:
launcher = os.getenv("CMAKE_CXX_COMPILER_LAUNCHER", "")
if "sccache" in launcher and "AUDITWHEEL_PLAT" in os.environ:
subprocess.run([launcher, "--show-stats"])
assert os.path.exists(dest), f"No output at {dest}, but we didn't get a bad return code from CMake?"
def readme():
github_emoji = re.compile(r":[a-z_]+:")
with open("README.md", encoding="utf-8") as f:
return github_emoji.sub("", f.read())
if __name__ == "__main__":
setup(
ext_modules=[CMakeExtension("arcticdb_ext")],
package_dir={"": "python"},
packages=find_packages(where="python", exclude=["tests", "tests.*"])
+ find_namespace_packages(where="python", include=["arcticdb.proto.*"]),
long_description=readme(),
long_description_content_type="text/markdown",
cmdclass=dict(
build_ext=CMakeBuild,
protoc=CompileProto,
build_py=CompileProtoAndBuild,
bdist_wheel=bdist_wheel,
develop=DevelopAndCompileProto,
),
zip_safe=False,
)