-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathsetup.py
More file actions
630 lines (563 loc) · 17.6 KB
/
setup.py
File metadata and controls
630 lines (563 loc) · 17.6 KB
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
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
#!/usr/bin/env python
import os
import sys
#debug
# print("\ncmdline: %r" % (sys.argv,))
import subprocess
import platform
import setuptools
from setuptools import setup, find_packages, Extension
from setuptools.command.build_ext import build_ext
# bundled ZSTD version
VERSION = (1, 5, 7,)
VERSION_STR = ".".join([str(x) for x in VERSION])
# Package version, even external
PKG_VERSION = VERSION
# Minor revision
PKG_VERSION += (3,)
PKG_VERSION_STR = ".".join([str(x) for x in PKG_VERSION])
vpath="./version"
if not os.path.exists(vpath):
vdn=os.path.dirname( os.path.abspath(sys.argv[0]))
vpath=os.path.join(vdn,vpath)
if os.path.exists(vpath):
print("use existing %s file" % vpath)
f = open(vpath,"r" )
PKG_VERSION_STR = f.read().strip()
f.close()
def which(bin_exe):
"""
Simulate shutil.which for python 2.7,
which available only since python 3.3.
Search executable in common paths.
@return: False or full path to executable
@rtype: str|bool
"""
# support Linux / POSIX here? Or maybe windows?
paths = ["/usr/local/bin", "/usr/local/sbin", "/bin", "/sbin", "/usr/bin", "/usr/sbin"]
if "PATH" in os.environ:
paths = os.environ["PATH"].split(":")
for p in paths:
full_path = os.path.join(p, bin_exe)
if os.path.isfile(full_path) and os.access(full_path, os.X_OK):
return full_path
return False
###
# Ugly hacks, I know
#
SUP_LEGACY="ZSTD_LEGACY" in os.environ
if "--legacy" in sys.argv:
# Support legacy output format functions
if SUP_LEGACY:
if os.environ[ZSTD_LEGACY]=='0':
SUP_LEGACY=False
else:
SUP_LEGACY=True
sys.argv.remove("--legacy")
SUP_WARNINGS="ZSTD_WARNINGS" in os.environ
if SUP_WARNINGS:
if os.environ["ZSTD_WARNINGS"]=='0':
SUP_WARNINGS=False
else:
SUP_WARNINGS=True
if "--all-warnings" in sys.argv:
SUP_WARNINGS=True
sys.argv.remove("--all-warnings")
SUP_WERROR="ZSTD_WERRORS" in os.environ
if SUP_WERROR:
if os.environ["ZSTD_WERRORS"]=='0':
SUP_WERROR=False
else:
SUP_WERROR=True
if "--all-warnings-errors" in sys.argv:
# Support legacy output format functions
SUP_WERROR=True
sys.argv.remove("--all-warnings-errors")
SUP_ASM="ZSTD_ASM" in os.environ
if "ZSTD_ASM" not in os.environ:
SUP_ASM = False
#a asm off by default
if "--libzstd-use-asm" in sys.argv:
# Support assembler builtin optimization in lizstd
SUP_ASM=True
sys.argv.remove("--libzstd-use-asm")
DISABLE_ASM=0
if not SUP_ASM:
DISABLE_ASM=1
SUP_THREADS="ZSTD_THREADS" in os.environ
if "ZSTD_THREADS" not in os.environ:
SUP_THREADS = True
else:
if os.environ['ZSTD_THREADS']=='0':
SUP_THREADS = False
# threads on by default
if "--libzstd-no-threads" in sys.argv:
# Disable support multithreading in lizstd
SUP_THREADS=False
sys.argv.remove("--libzstd-no-threads")
ENABLE_THREADS=0
if SUP_THREADS:
ENABLE_THREADS=1
SUP_ASM_BMI2="ZSTD_ASM_BMI2" in os.environ
if "--libzstd-use-asm-bmi2" in sys.argv:
# Support assembler builtin optimization in lizstd for new AMD CPU
SUP_ASM_BMI2=True
sys.argv.remove("--libzstd-use-asm-bmi2")
ENABLE_ASM_BMI2=0
if SUP_ASM_BMI2:
ENABLE_ASM_BMI2=1
SUP_TRACE="ZSTD_TRACE" in os.environ
if "--debug-trace" in sys.argv:
# Support tracing for debug
SUP_TRACE=True
sys.argv.remove("--debug-trace")
BUILD_SPEED0="ZSTD_SPEED0" in os.environ
if "--speed0" in sys.argv:
# speed or size choose only one
if BUILD_SPEED0:
if os.environ["ZSTD_SPEED0"]=='0':
BUILD_SPEED0=False
BUILD_SPEED0=True
BUILD_SMALL=False
sys.argv.remove("--speed0")
else:
BUILD_SPEED0=False
BUILD_SPEED1="ZSTD_SPEED1" in os.environ
if "--speed1" in sys.argv:
if BUILD_SPEED1:
if os.environ["ZSTD_SPEED1"]=='0':
BUILD_SPEED1=False
# speed or size choose only one
BUILD_SPEED1=True
BUILD_SMALL=False
sys.argv.remove("--speed1")
else:
BUILD_SPEED1=False
BUILD_SPEED2="ZSTD_SPEED2" in os.environ
if "--speed2" in sys.argv:
if BUILD_SPEED2:
if os.environ["ZSTD_SPEED2"]=='0':
BUILD_SPEED2=False
# speed or size choose only one
BUILD_SPEED2=True
BUILD_SMALL=False
sys.argv.remove("--speed2")
else:
BUILD_SPEED2=False
BUILD_SPEED3="ZSTD_SPEED3" in os.environ
if "--speed3" in sys.argv:
# speed or size choose only one
BUILD_SPEED3=True
BUILD_SMALL=False
sys.argv.remove("--speed3")
else:
BUILD_SPEED3=True
if BUILD_SPEED3:
if os.environ.get("ZSTD_SPEED3")=='0':
BUILD_SPEED3=False
BUILD_SPEEDMAX="ZSTD_SPEEDMAX" in os.environ
if "--speed-max" in sys.argv:
# speed or size choose only one
BUILD_SPEED3=True
BUILD_SPEEDMAX=True
BUILD_SMALL=False
sys.argv.remove("--speed-max")
BUILD_SMALL="ZSTD_SMALL" in os.environ
if "--small" in sys.argv:
if BUILD_SMALL:
if os.environ["ZSTD_SMALL"]=='0':
BUILD_SMALL=False
BUILD_SMALL=True
BUILD_SPEED3=False
sys.argv.remove("--small")
else:
BUILD_SMALL=False
SUP_EXTERNAL="ZSTD_EXTERNAL" in os.environ
ext_libraries=[]
if "--external" in sys.argv:
# You want use external Zstd library?
SUP_EXTERNAL=True
sys.argv.remove("--external")
SUP_DEBUG="ZSTD_DEBUG" in os.environ
if SUP_DEBUG:
if os.environ["ZSTD_DEBUG"]=='0':
SUP_DEBUG=False
ext_libraries=[]
if "--debug" in sys.argv:
SUP_DEBUG=True
sys.argv.remove("--debug")
SUP_DEBUG_NOTICE="ZSTD_DEBUG_NOTICE" in os.environ
if SUP_DEBUG_NOTICE:
SUP_DEBUG=True
if os.environ["ZSTD_DEBUG_NOTICE"]=='0':
SUP_DEBUG_NOTICE=False
ext_libraries=[]
if "--debug-notice" in sys.argv:
SUP_DEBUG_NOTICE=True
SUP_DEBUG=True
sys.argv.remove("--debug-notice")
SUP_DEBUG_INFO="ZSTD_DEBUG_INFO" in os.environ
if SUP_DEBUG_INFO:
SUP_DEBUG=True
if os.environ["ZSTD_DEBUG_INFO"]=='0':
SUP_DEBUG_INFO=False
ext_libraries=[]
if "--debug-info" in sys.argv:
SUP_DEBUG_INFO=True
SUP_DEBUG=True
sys.argv.remove("--debug-info")
SUP_DEBUG_ERROR="ZSTD_DEBUG_ERROR" in os.environ
if SUP_DEBUG_ERROR:
SUP_DEBUG=True
if os.environ["ZSTD_DEBUG_ERROR"]=='0':
SUP_DEBUG_ERROR=False
ext_libraries=[]
if "--debug-error" in sys.argv:
SUP_DEBUG_ERROR=True
SUP_DEBUG=True
sys.argv.remove("--debug-error")
#Some python builds need to disable LTO by force
BUILD_NO_LTO="ZSTD_BUILD_NO_LTO" in os.environ
if BUILD_NO_LTO:
if os.environ["ZSTD_BUILD_NO_LTO"]=='0':
BUILD_NO_LTO=False
if "--force-no-lto" in sys.argv:
BUILD_NO_LTO=True
sys.argv.remove("--force-no-lto")
else:
BUILD_NO_LTO=True
BUILD_STRIP="ZSTD_BUILD_STRIP" in os.environ
if BUILD_STRIP:
if os.environ["ZSTD_BUILD_STRIP"]=='0':
BUILD_STRIP=False
if "--force-strip" in sys.argv:
BUILD_STRIP=True
sys.argv.remove("--force-strip")
else:
BUILD_STRIP=True
pkgconf = which("pkg-config")
if "--libzstd-bundled" in sys.argv:
# Do you want use external Zstd library?
SUP_EXTERNAL=False
sys.argv.remove("--libzstd-bundled")
pkgconf = False
#if SUP_EXTERNAL:
if platform.system() == "Linux" and "build_ext" in sys.argv or "build" in sys.argv or "bdist_wheel" in sys.argv or "test" in sys.argv:
# You should add external library by option: --libraries zstd
# And probably include paths by option: --include-dirs /usr/include/zstd
# And probably library paths by option: --library-dirs /usr/lib/i386-linux-gnu
# We need pkg-config here!
if pkgconf is not False:
#debug
#print("pkg-config exists")
cmd = [pkgconf, "libzstd", "--modversion"]
if sys.hexversion >= 0x03000000:
VERSION_STR=b''
else:
VERSION_STR=""
if sys.hexversion >= 0x02070000:
try:
VERSION_STR = subprocess.check_output(cmd).strip()
except Exception as e:
print("Error: %r" % e)
pass
else:
# Pure Python 2.6
VERSION_STR = subprocess.Popen(cmd, stdout=subprocess.PIPE).communicate()[0].strip()
if sys.hexversion >= 0x03000000:
# It's bytes in PY3
VERSION_STR = VERSION_STR.decode()
#debug
if SUP_DEBUG:
print("\nFound libzstd version %r" % VERSION_STR)
if VERSION_STR and SUP_EXTERNAL:
if VERSION_STR>="1.4.0":
SUP_EXTERNAL=True
if "--libraries" not in sys.argv:
# Add something default
ext_libraries=["zstd"]
else:
raise RuntimeError("Need zstd library verion >= 1.4.0")
#VERSION = tuple(int(v) for v in VERSION_STR.split("."))
else:
if SUP_EXTERNAL:
# Require pkg config
raise RuntimeError("Need pkg-config to find system libzstd.")
print("\n Need pkg-config to find system libzstd. Or we try bundled one.")
# default standard optimization
COPT = {
'msvc': ['/O2', ],
'mingw32': ['-O2',],
'unix': ['-O2',],
'clang': ['-O2',],
'gcc': ['-O2',],
}
if BUILD_SMALL:
COPT = {
'msvc': ['/O1', ],
'mingw32': ['-Os',],
'unix': ['-Os',],
'clang': ['-Os',],
'gcc': ['-Os',],
}
# not small, but speed?
if BUILD_SPEED0:
COPT = {
'msvc': ['/O0', ],
'mingw32': ['-O0',],
'unix': ['-O0',],
'clang': ['-O0',],
'gcc': ['-O0',],
}
if BUILD_SPEED1:
COPT = {
'msvc': ['/O1', ],
'mingw32': ['-O1',],
'unix': ['-O1',],
'clang': ['-O1',],
'gcc': ['-O1',],
}
if BUILD_SPEED2:
COPT = {
'msvc': ['/O2', ],
'mingw32': ['-O3',],
'unix': ['-O3',],
'clang': ['-O3',],
'gcc': ['-O3',],
}
if BUILD_SPEED3:
COPT = {
'msvc': ['/Ox', ],
'mingw32': ['-O3',],
'unix': ['-O3',],
'clang': ['-O3',],
'gcc': ['-O3',],
}
###
for comp in COPT:
if comp == 'msvc':
COPT[comp].extend([ '/DMOD_VERSION=%s' % PKG_VERSION_STR, '/DDYNAMIC_BMI2=%d' % ENABLE_ASM_BMI2, '/DZSTD_DISABLE_ASM=%d' % DISABLE_ASM ]),
else:
COPT[comp].extend([ '-DMOD_VERSION=%s' % PKG_VERSION_STR, '-DDYNAMIC_BMI2=%d' % ENABLE_ASM_BMI2, '-DZSTD_DISABLE_ASM=%d' % DISABLE_ASM ]),
if not SUP_EXTERNAL:
for comp in COPT:
if comp == 'msvc':
COPT[comp].extend([ '/DZSTD_MULTITHREAD=%d' % ENABLE_THREADS,
'/Izstd\\lib', '/Izstd\\lib\\common', '/Izstd\\lib\\compress', '/Izstd\\lib\\decompress',
])
else:
COPT[comp].extend([ '-DZSTD_MULTITHREAD=%d' % ENABLE_THREADS,
'-Izstd/lib', '-Izstd/lib/common', '-Izstd/lib/compress', '-Izstd/lib/decompress',
])
else:
for comp in COPT:
if comp == 'msvc':
COPT[comp].extend([ '/DLIBZSTD_EXTERNAL=1'
])
else:
COPT[comp].extend([ '-DLIBZSTD_EXTERNAL=1',
])
if SUP_DEBUG:
for comp in COPT:
if comp == 'msvc':
COPT[comp].extend([ '/DZSTD_DEBUG=1','-g',
])
else:
COPT[comp].extend([ '-DZSTD_DEBUG=1','-g',
])
if BUILD_NO_LTO:
for comp in COPT:
if comp == 'msvc':
pass
else:
COPT[comp].extend([ '-fno-lto',
])
if SUP_DEBUG_NOTICE:
for comp in COPT:
if comp == 'msvc':
COPT[comp].extend([ '/DZSTD_DEBUG_NOTICE=1',
])
else:
COPT[comp].extend([ '-DZSTD_DEBUG_NOTICE=1',
])
if SUP_DEBUG_INFO:
for comp in COPT:
if comp == 'msvc':
COPT[comp].extend([ '/DZSTD_DEBUG_INFO=1',
])
else:
COPT[comp].extend([ '-DZSTD_DEBUG_INFO=1',
])
if SUP_DEBUG_ERROR:
for comp in COPT:
if comp == 'msvc':
COPT[comp].extend([ '/DZSTD_DEBUG_ERROR=1',
])
else:
COPT[comp].extend([ '-DZSTD_DEBUG_ERROR=1',
])
if BUILD_SPEEDMAX:
for comp in COPT:
if comp == 'msvc':
COPT[comp].extend([ ''
])
else:
COPT[comp].extend([ '-march=native',
])
if SUP_LEGACY:
for comp in COPT:
if comp == 'msvc':
COPT[comp].extend(['/Izstd\\lib\\legacy', '/DZSTD_LEGACY_SUPPORT=1'])
else:
COPT[comp].extend(['-Izstd/lib/legacy', '-DZSTD_LEGACY_SUPPORT=1'])
if SUP_WARNINGS:
for comp in COPT:
if comp == 'msvc':
COPT[comp].extend(['/Wall',])
else:
COPT[comp].extend(['-Wall', '-Wextra', '-Wpedantic'])
if SUP_WERROR:
for comp in COPT:
if comp == 'msvc':
COPT[comp].extend(['//WX'])
else:
COPT[comp].extend(['-Werror'])
if BUILD_STRIP:
for comp in COPT:
if comp == 'msvc':
pass
else:
COPT[comp].extend(['-Wl,-s'])
# Force traceing support or disable
if SUP_TRACE:
for comp in COPT:
if comp == 'msvc':
COPT[comp].extend(['/DZSTD_TRACE=1'])
else:
COPT[comp].extend(['-DZSTD_TRACE=1'])
else:
for comp in COPT:
if comp == 'msvc':
COPT[comp].extend(['/DZSTD_TRACE=0'])
else:
COPT[comp].extend(['-DZSTD_TRACE=0'])
# protect from python packaged flags that prevent from exporting symbols
for comp in COPT:
if comp == 'msvc':
pass
else:
COPT[comp].extend(['-std=c99','-fvisibility=default'])
# disable some msvc warnings
for comp in COPT:
if comp == 'msvc':
COPT[comp].extend(['/wd4996'])
class ZstdBuildExt( build_ext ):
def build_extensions(self):
c = self.compiler.compiler_type
if c in COPT:
for e in self.extensions:
e.extra_compile_args = COPT[c]
build_ext.build_extensions(self)
zstdFiles = []
if not SUP_EXTERNAL:
for f in [
'compress/zstd_compress.c',
'compress/zstd_compress_literals.c',
'compress/zstd_compress_sequences.c',
'compress/zstd_compress_superblock.c',
'compress/zstd_preSplit.c',
'compress/zstdmt_compress.c',
'compress/zstd_fast.c',
'compress/zstd_double_fast.c',
'compress/zstd_lazy.c',
'compress/zstd_opt.c',
'compress/zstd_ldm.c',
'compress/fse_compress.c',
'compress/huf_compress.c',
'compress/hist.c',
'common/fse_decompress.c',
'decompress/zstd_decompress.c',
'decompress/zstd_decompress_block.c',
'decompress/zstd_ddict.c',
'decompress/huf_decompress.c',
'common/entropy_common.c',
'common/zstd_common.c',
'common/xxhash.c',
'common/error_private.c',
'common/pool.c',
'common/threading.c',
]:
zstdFiles.append('zstd/lib/'+f)
if SUP_LEGACY:
for f in [
'legacy/zstd_v01.c', 'legacy/zstd_v02.c', 'legacy/zstd_v03.c', 'legacy/zstd_v04.c', 'legacy/zstd_v05.c', 'legacy/zstd_v06.c', 'legacy/zstd_v07.c'
]:
zstdFiles.append('zstd/lib/'+f)
# files needed always, even for external
zstdFiles.append('src/debug.c')
zstdFiles.append('src/util.c')
zstdFiles.append('src/python-zstd.c')
# Another dirty hack
def my_test_suite():
import unittest
os.environ["VERSION"] = VERSION_STR
os.environ["PKG_VERSION"] = PKG_VERSION_STR
test_suite = unittest.TestSuite()
test_suite.addTest(unittest.defaultTestLoader.loadTestsFromName("tests.test_compress"))
test_suite.addTest(unittest.defaultTestLoader.loadTestsFromName("tests.test_decompress"))
test_suite.addTest(unittest.defaultTestLoader.loadTestsFromName("tests.test_version"))
test_suite.addTest(unittest.defaultTestLoader.loadTestsFromName("tests.test_speed"))
return test_suite
test_func_name = "setup.my_test_suite"
if "test" in sys.argv:
from setuptools.version import __version__ as version
print("setuptools version %r" % version)
if version < '72.0':
test_func_name = "tests"
f=open('README.rst', 'r')
ld=f.read()
f.close()
if SUP_DEBUG:
print("debug: ext_libraries:%r" % (ext_libraries))
setup(
name='zstd',
version=PKG_VERSION_STR,
description="ZSTD Bindings for Python",
long_description=ld,
author='Sergey Dryabzhinsky, Anton Stuk',
author_email='sergey.dryabzhinsky@gmail.com',
maintainer='Sergey Dryabzhinsky',
maintainer_email='sergey.dryabzhinsky@gmail.com',
url='https://github.com/sergey-dryabzhinsky/python-zstd',
keywords=['zstd', 'zstandard', 'compression'],
license='BSD',
packages=find_packages('src'),
package_dir={'': 'src'},
ext_modules=[
Extension('zstd', zstdFiles, libraries=ext_libraries)
],
cmdclass = {'build_ext': ZstdBuildExt },
test_suite=test_func_name,
classifiers=[
# 'License :: OSI Approved :: BSD License',
'Intended Audience :: Developers',
'Development Status :: 5 - Production/Stable',
'Operating System :: POSIX',
'Programming Language :: C',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'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',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
'Programming Language :: Python :: 3.15',
]
)