forked from DataDog/dd-trace-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
459 lines (399 loc) · 16.5 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
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
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
import hashlib
import os
import platform
import shutil
import sys
import tarfile
import glob
from setuptools import setup, find_packages, Extension
from setuptools.command.build_ext import build_ext as BuildExtCommand
from setuptools.command.build_py import build_py as BuildPyCommand
from pkg_resources import get_build_platform
from distutils.command.clean import clean as CleanCommand
try:
# ORDER MATTERS
# Import this after setuptools or it will fail
from Cython.Build import cythonize # noqa: I100
import Cython.Distutils
except ImportError:
raise ImportError(
"Failed to import Cython modules. This can happen under versions of pip older than 18 that don't "
"support installing build requirements during setup. If you're using pip, make sure it's a "
"version >=18.\nSee the quickstart documentation for more information:\n"
"https://ddtrace.readthedocs.io/en/stable/installation_quickstart.html"
)
if sys.version_info >= (3, 0):
from urllib.error import HTTPError
from urllib.request import urlretrieve
else:
from urllib import urlretrieve
from urllib2 import HTTPError
HERE = os.path.dirname(os.path.abspath(__file__))
DEBUG_COMPILE = "DD_COMPILE_DEBUG" in os.environ
IS_PYSTON = hasattr(sys, "pyston_version_info")
LIBDDWAF_DOWNLOAD_DIR = os.path.join(HERE, os.path.join("ddtrace", "appsec", "ddwaf", "libddwaf"))
CURRENT_OS = platform.system()
LIBDDWAF_VERSION = "1.9.0"
def verify_libddwaf_checksum(sha256_filename, filename, current_os):
# sha256 File format is ``checksum`` followed by two whitespaces, then ``filename`` then ``\n``
expected_checksum, expected_filename = list(filter(None, open(sha256_filename, "r").read().strip().split(" ")))
actual_checksum = hashlib.sha256(open(filename, "rb").read()).hexdigest()
try:
assert expected_filename.endswith(filename)
assert expected_checksum == actual_checksum
except AssertionError:
print("Checksum verification error: Checksum and/or filename don't match:")
print("expected checksum: %s" % expected_checksum)
print("actual checksum: %s" % actual_checksum)
print("expected filename: %s" % expected_filename)
print("actual filename: %s" % filename)
sys.exit(1)
def load_module_from_project_file(mod_name, fname):
"""
Helper used to load a module from a file in this project
DEV: Loading this way will by-pass loading all parent modules
e.g. importing `ddtrace.vendor.psutil.setup` will load `ddtrace/__init__.py`
which has side effects like loading the tracer
"""
fpath = os.path.join(HERE, fname)
if sys.version_info >= (3, 5):
import importlib.util
spec = importlib.util.spec_from_file_location(mod_name, fpath)
mod = importlib.util.module_from_spec(spec)
spec.loader.exec_module(mod)
return mod
elif sys.version_info >= (3, 3):
from importlib.machinery import SourceFileLoader
return SourceFileLoader(mod_name, fpath).load_module()
else:
import imp
return imp.load_source(mod_name, fpath)
def is_64_bit_python():
return sys.maxsize > (1 << 32)
class CleanLibraries(CleanCommand):
@staticmethod
def remove_dynamic_library():
shutil.rmtree(LIBDDWAF_DOWNLOAD_DIR, True)
def run(self):
CleanLibraries.remove_dynamic_library()
CleanCommand.run(self)
class LibDDWaf_Download(BuildPyCommand):
@staticmethod
def download_dynamic_library():
TRANSLATE_SUFFIX = {"Windows": ".dll", "Darwin": ".dylib", "Linux": ".so"}
AVAILABLE_RELEASES = {
"Windows": ["win32", "x64"],
"Darwin": ["arm64", "x86_64"],
"Linux": ["aarch64", "x86_64"],
}
SUFFIX = TRANSLATE_SUFFIX[CURRENT_OS]
# If the directory exists and it is not empty, assume the right files are there.
# Use `python setup.py clean` to remove it.
if os.path.isdir(LIBDDWAF_DOWNLOAD_DIR) and len(os.listdir(LIBDDWAF_DOWNLOAD_DIR)):
return
if not os.path.isdir(LIBDDWAF_DOWNLOAD_DIR):
os.makedirs(LIBDDWAF_DOWNLOAD_DIR)
for arch in AVAILABLE_RELEASES[CURRENT_OS]:
if CURRENT_OS == "Linux" and not get_build_platform().endswith(arch):
# We cannot include the dynamic libraries for other architectures here.
continue
elif CURRENT_OS == "Darwin":
# Detect build type for macos:
# https://github.com/pypa/cibuildwheel/blob/main/cibuildwheel/macos.py#L250
target_platform = os.getenv("PLAT")
# Darwin Universal2 should bundle both architectures
if not target_platform.endswith(("universal2", arch)):
continue
elif CURRENT_OS == "Windows" and (not is_64_bit_python() != arch.endswith("32")):
# Win32 can be built on a 64-bit machine so build_platform may not be relevant
continue
arch_dir = os.path.join(LIBDDWAF_DOWNLOAD_DIR, arch)
# If the directory for the architecture exists, assume the right files are there
if os.path.isdir(arch_dir):
continue
ddwaf_archive_dir = "libddwaf-%s-%s-%s" % (LIBDDWAF_VERSION, CURRENT_OS.lower(), arch)
ddwaf_archive_name = ddwaf_archive_dir + ".tar.gz"
ddwaf_download_address = "https://github.com/DataDog/libddwaf/releases/download/%s/%s" % (
LIBDDWAF_VERSION,
ddwaf_archive_name,
)
ddwaf_sha256_address = ddwaf_download_address + ".sha256"
try:
filename, http_response = urlretrieve(ddwaf_download_address, ddwaf_archive_name)
sha256_filename, http_response = urlretrieve(ddwaf_sha256_address, ddwaf_archive_name + ".sha256")
except HTTPError as e:
print("No archive found for dynamic library ddwaf : " + ddwaf_archive_dir)
raise e
# Verify checksum of downloaded file
verify_libddwaf_checksum(sha256_filename, filename, CURRENT_OS)
# Open the tarfile first to get the files needed.
# This could be solved with "r:gz" mode, that allows random access
# but that approach does not work on Windows
with tarfile.open(filename, "r|gz", errorlevel=2) as tar:
dynfiles = [c for c in tar.getmembers() if c.name.endswith(SUFFIX)]
with tarfile.open(filename, "r|gz", errorlevel=2) as tar:
print("extracting files:", [c.name for c in dynfiles])
tar.extractall(members=dynfiles, path=HERE)
os.rename(os.path.join(HERE, ddwaf_archive_dir), arch_dir)
# Rename ddwaf.xxx to libddwaf.xxx so the filename is the same for every OS
original_file = os.path.join(arch_dir, "lib", "ddwaf" + SUFFIX)
if os.path.exists(original_file):
renamed_file = os.path.join(arch_dir, "lib", "libddwaf" + SUFFIX)
os.rename(original_file, renamed_file)
os.remove(filename)
def run(self):
CleanLibraries.remove_dynamic_library()
LibDDWaf_Download.download_dynamic_library()
BuildPyCommand.run(self)
long_description = """
# dd-trace-py
`ddtrace` is Datadog's tracing library for Python. It is used to trace requests
as they flow across web servers, databases and microservices so that developers
have great visibility into bottlenecks and troublesome requests.
## Getting Started
For a basic product overview, installation and quick start, check out our
[setup documentation][setup docs].
For more advanced usage and configuration, check out our [API
documentation][api docs].
For descriptions of terminology used in APM, take a look at the [official
documentation][visualization docs].
[setup docs]: https://docs.datadoghq.com/tracing/setup/python/
[api docs]: https://ddtrace.readthedocs.io/
[visualization docs]: https://docs.datadoghq.com/tracing/visualization/
"""
def get_exts_for(name):
try:
mod = load_module_from_project_file(
"ddtrace.vendor.{}.setup".format(name), "ddtrace/vendor/{}/setup.py".format(name)
)
return mod.get_extensions()
except Exception as e:
print("WARNING: Failed to load %s extensions, skipping: %s" % (name, e))
return []
if sys.byteorder == "big":
encoding_macros = [("__BIG_ENDIAN__", "1")]
else:
encoding_macros = [("__LITTLE_ENDIAN__", "1")]
if CURRENT_OS == "Windows":
encoding_libraries = ["ws2_32"]
extra_compile_args = []
debug_compile_args = []
else:
linux = CURRENT_OS == "Linux"
encoding_libraries = []
extra_compile_args = ["-DPy_BUILD_CORE"]
if DEBUG_COMPILE:
if linux:
debug_compile_args = ["-g", "-O0", "-Wall", "-Wextra", "-Wpedantic"]
else:
debug_compile_args = [
"-g",
"-O0",
"-Wall",
"-Wextra",
"-Wpedantic",
# Cython is not deprecation-proof
"-Wno-deprecated-declarations",
]
else:
debug_compile_args = []
if sys.version_info[:2] >= (3, 4) and not IS_PYSTON:
ext_modules = [
Extension(
"ddtrace.profiling.collector._memalloc",
sources=[
"ddtrace/profiling/collector/_memalloc.c",
"ddtrace/profiling/collector/_memalloc_tb.c",
"ddtrace/profiling/collector/_memalloc_heap.c",
],
extra_compile_args=debug_compile_args,
),
]
if platform.system() not in ("Windows", ""):
ext_modules.append(
Extension(
"ddtrace.appsec.iast._stacktrace",
# Sort source files for reproducibility
sources=[
"ddtrace/appsec/iast/_stacktrace.c",
],
extra_compile_args=debug_compile_args,
)
)
if sys.version_info >= (3, 6, 0):
ext_modules.append(
Extension(
"ddtrace.appsec.iast._taint_tracking._native",
# Sort source files for reproducibility
sources=sorted(
glob.glob(
os.path.join("ddtrace", "appsec", "iast", "_taint_tracking", "**", "*.cpp"),
recursive=True,
)
),
extra_compile_args=debug_compile_args + ["-std=c++17"],
)
)
else:
ext_modules = []
bytecode = [
"dead-bytecode; python_version<'3.0'", # backport of bytecode for Python 2.7
"bytecode~=0.12.0; python_version=='3.5'",
"bytecode~=0.13.0; python_version=='3.6'",
"bytecode~=0.13.0; python_version=='3.7'",
"bytecode; python_version>='3.8'",
]
setup(
name="ddtrace",
description="Datadog APM client library",
url="https://github.com/DataDog/dd-trace-py",
package_urls={
"Changelog": "https://ddtrace.readthedocs.io/en/stable/release_notes.html",
"Documentation": "https://ddtrace.readthedocs.io/en/stable/",
},
project_urls={
"Bug Tracker": "https://github.com/DataDog/dd-trace-py/issues",
"Source Code": "https://github.com/DataDog/dd-trace-py/",
"Changelog": "https://ddtrace.readthedocs.io/en/stable/release_notes.html",
"Documentation": "https://ddtrace.readthedocs.io/en/stable/",
},
author="Datadog, Inc.",
author_email="[email protected]",
long_description=long_description,
long_description_content_type="text/markdown",
license="BSD",
packages=find_packages(exclude=["tests*", "benchmarks"]),
package_data={
"ddtrace": ["py.typed"],
"ddtrace.appsec": ["rules.json"],
"ddtrace.appsec.ddwaf": [os.path.join("libddwaf", "*", "lib", "libddwaf.*")],
},
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*",
zip_safe=False,
# enum34 is an enum backport for earlier versions of python
# funcsigs backport required for vendored debtcollector
install_requires=[
"ddsketch>=2.0.1",
"enum34; python_version<'3.4'",
"funcsigs>=1.0.0; python_version=='2.7'",
"typing; python_version<'3.5'",
"packaging>=17.1",
"protobuf>=3; python_version>='3.7'",
"protobuf>=3,<4.0; python_version=='3.6'",
"protobuf>=3,<3.18; python_version<'3.6'",
"tenacity>=5",
"attrs>=20; python_version>'2.7'",
"attrs>=20,<22; python_version=='2.7'",
"contextlib2<1.0; python_version=='2.7'",
"cattrs",
"six>=1.12.0",
"typing_extensions",
"importlib_metadata; python_version<'3.8'",
"pathlib2; python_version<'3.5'",
"jsonschema",
"xmltodict>=0.12",
"ipaddress; python_version<'3.7'",
"envier",
"pep562; python_version<'3.7'",
"opentelemetry-api>=1; python_version>='3.7'",
]
+ bytecode,
extras_require={
# users can include opentracing by having:
# install_requires=['ddtrace[opentracing]', ...]
"opentracing": ["opentracing>=2.0.0"],
},
tests_require=["flake8"],
cmdclass={
"build_ext": BuildExtCommand,
"build_py": LibDDWaf_Download,
"clean": CleanLibraries,
},
entry_points={
"console_scripts": [
"ddtrace-run = ddtrace.commands.ddtrace_run:main",
],
"pytest11": [
"ddtrace = ddtrace.contrib.pytest.plugin",
"ddtrace.pytest_bdd = ddtrace.contrib.pytest_bdd.plugin",
],
"opentelemetry_context": [
"ddcontextvars_context = ddtrace.opentelemetry._context:DDRuntimeContext",
],
},
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
use_scm_version={"write_to": "ddtrace/_version.py"},
setup_requires=["setuptools_scm[toml]>=4", "cython"],
ext_modules=ext_modules
+ cythonize(
[
Cython.Distutils.Extension(
"ddtrace.internal._rand",
sources=["ddtrace/internal/_rand.pyx"],
language="c",
),
Cython.Distutils.Extension(
"ddtrace.internal._tagset",
sources=["ddtrace/internal/_tagset.pyx"],
language="c",
),
Extension(
"ddtrace.internal._encoding",
["ddtrace/internal/_encoding.pyx"],
include_dirs=["."],
libraries=encoding_libraries,
define_macros=encoding_macros,
),
Cython.Distutils.Extension(
"ddtrace.profiling.collector.stack",
sources=["ddtrace/profiling/collector/stack.pyx"],
language="c",
extra_compile_args=extra_compile_args,
),
Cython.Distutils.Extension(
"ddtrace.profiling.collector._traceback",
sources=["ddtrace/profiling/collector/_traceback.pyx"],
language="c",
),
Cython.Distutils.Extension(
"ddtrace.profiling._threading",
sources=["ddtrace/profiling/_threading.pyx"],
language="c",
),
Cython.Distutils.Extension(
"ddtrace.profiling.collector._task",
sources=["ddtrace/profiling/collector/_task.pyx"],
language="c",
),
Cython.Distutils.Extension(
"ddtrace.profiling.exporter.pprof",
sources=["ddtrace/profiling/exporter/pprof.pyx"],
language="c",
),
Cython.Distutils.Extension(
"ddtrace.profiling._build",
sources=["ddtrace/profiling/_build.pyx"],
language="c",
),
],
compile_time_env={
"PY_MAJOR_VERSION": sys.version_info.major,
"PY_MINOR_VERSION": sys.version_info.minor,
"PY_MICRO_VERSION": sys.version_info.micro,
},
force=True,
annotate=os.getenv("_DD_CYTHON_ANNOTATE") == "1",
)
+ get_exts_for("wrapt")
+ get_exts_for("psutil"),
)