forked from gdabah/distorm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
288 lines (251 loc) · 10.7 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
#!/usr/bin/env python
# Copyright (c) 2009, Mario Vilas
# Rob Ruana 2010
# Gil Dabah
# All rights reserved.
# Licensed under BSD.
#
__revision__ = "$Id: setup.py 603 2010-01-31 00:11:05Z qvasimodo $"
import re
import os
import platform
import string
import shutil
import sys
import subprocess as sp
from glob import glob
from shutil import ignore_patterns
from distutils import log
from distutils.command.build import build
from distutils.command.build_clib import build_clib
from distutils.command.clean import clean
from distutils.command.install_lib import install_lib
from distutils.command.sdist import sdist
from distutils.core import setup, Extension
from distutils.errors import DistutilsSetupError
def compile_vc(solution_path, config, platform):
match_vs = re.compile('vs(\d+)comntools$', re.I).match
compilers = [
m.group(1, 0) for m in (match_vs(k) for k in os.environ.keys())
if m is not None
]
msbuild = [
'msbuild',
'/p:Configuration=%s' % config,
'/p:Platform=%s' % platform,
solution_path
]
for ver, var in sorted(compilers, key = lambda v: -int(v[0])):
bat = os.path.join(os.environ[var], r'..\..\vc\vcvarsall.bat')
try:
log.info('Compiling with %s: %s', var, ' '.join(msbuild))
sp.check_call(['call', bat, '&&'] + msbuild, shell = True)
return
except sp.CalledProcessError:
log.info('compilation with %s failed', var)
raise DistutilsSetupError(
'Failed to compile "%s" with any available compiler' % solution_path
)
def get_sources():
"""Returns a list of C source files that should be compiled to
create the libdistorm3 library.
"""
return sorted(glob('src/*.c'))
class custom_build(build):
"""Customized build command"""
def run(self):
log.info('running custom_build')
if 'windows' in platform.system().lower():
bits = 'x64' if sys.maxsize > 2**32 else 'win32'
compile_vc('make/win32/distorm.sln', 'dll', bits)
self.copy_file('distorm3.dll', 'python/distorm3')
build.run(self)
class custom_build_clib(build_clib):
"""Customized build_clib command
This custom_build_clib will create dynamically linked libraries rather
than statically linked libraries. In addition, it places the compiled
libraries alongside the python packages, to facilitate the use of ctypes.
"""
def finalize_options (self):
# We want build-clib to default to build-lib as defined by the
# "build" command. This is so the compiled library will be put
# in the right place along side the python code.
self.set_undefined_options('build',
('build_lib', 'build_clib'),
('build_temp', 'build_temp'),
('compiler', 'compiler'),
('debug', 'debug'),
('force', 'force'))
self.libraries = self.distribution.libraries
if self.libraries: # In Python 3.0 they have a bug in check_library_list, comment it out then.
self.check_library_list(self.libraries)
if self.include_dirs is None:
self.include_dirs = self.distribution.include_dirs or []
if type(self.include_dirs) in (bytes, str):
self.include_dirs = string.split(self.include_dirs,
os.pathsep)
def get_source_files_for_lib(self, lib_name, build_info):
sources = build_info.get('sources', [])
if hasattr(sources, '__call__'):
sources = sources()
if (sources is None or
type(sources) not in (list, tuple) or
len(sources) == 0):
raise DistutilsSetupError(
"in 'libraries' option (library '%s'), 'sources' must be "
"present and must be a list of source filenames" % lib_name
)
return sources
def get_source_files(self):
self.check_library_list(self.libraries)
filenames = []
for (lib_name, build_info) in self.libraries:
sources = self.get_source_files_for_lib(lib_name, build_info)
filenames.extend(sources)
return filenames
def run(self):
log.info('running custom_build_clib')
build_clib.run(self)
def build_libraries (self, libraries):
for (lib_name, build_info) in libraries:
sources = self.get_source_files_for_lib(lib_name, build_info)
sources = list(sources)
log.info("building '%s' library", lib_name)
# First, compile the source code to object files in the
# library directory.
macros = build_info.get('macros')
include_dirs = build_info.get('include_dirs')
objects = self.compiler.compile(sources,
output_dir=self.build_temp,
macros=macros,
include_dirs=include_dirs,
extra_postargs=build_info.get('extra_compile_args', []),
debug=self.debug)
# Then link the object files and put the result in the
# package build directory.
package = build_info.get('package', '')
self.compiler.link_shared_lib(
objects, lib_name,
output_dir=os.path.join(self.build_clib, package),
extra_postargs=build_info.get('extra_link_args', []),
debug=self.debug,)
class custom_clean(clean):
"""Customized clean command
Customized clean command removes .pyc files from the project,
as well as build and dist directories."""
def run(self):
log.info('running custom_clean')
# Remove .pyc files
if hasattr(os, 'walk'):
for root, dirs, files in os.walk('.'):
for f in files:
if f.endswith('.pyc'):
log.info("removing '%s'" % f)
try:
os.unlink(f)
except:
pass
# Remove generated directories
for dir in ['build', 'dist']:
if os.path.exists(dir):
log.info("removing '%s' (and everything under it)"%dir)
try:
shutil.rmtree(dir, ignore_errors=True)
except:
pass
clean.run(self)
class custom_sdist(sdist):
"""Customized sdist command"""
def run(self):
log.info('running custom_sdist')
sdist.run(self)
def main():
# Just in case we are being called from a different directory
cwd = os.path.dirname(__file__)
if cwd:
os.chdir(cwd)
# Get the target platform
system = platform.system().lower()
# Setup the extension module
# Setup the library
ext_modules = None
libraries = None
package_data = []
if 'windows' in system:
package_data = ['distorm3.dll']
elif 'darwin' in system or 'macosx' in system:
libraries = [(
'distorm3', dict(
package='distorm3',
sources=get_sources,
include_dirs=['src', 'include'],
extra_compile_args=['-arch', 'i386', '-arch', 'x86_64', '-O2',
'-Wall', '-fPIC', '-DSUPPORT_64BIT_OFFSET',
'-DDISTORM_DYNAMIC']))]
elif 'cygwin' in system:
libraries = [(
'distorm3', dict(
package='distorm3',
sources=get_sources,
include_dirs=['src', 'include'],
extra_compile_args=['-fPIC', '-O2', '-Wall',
'-DSUPPORT_64BIT_OFFSET',
'-DDISTORM_STATIC']))]
else:
libraries = [(
'distorm3', dict(
package='distorm3',
sources=get_sources,
include_dirs=['src', 'include'],
extra_compile_args=['-fPIC', '-O2', '-Wall',
'-DSUPPORT_64BIT_OFFSET',
'-DDISTORM_STATIC']))]
options = {
# Setup instructions
'requires' : ['ctypes'],
'provides' : ['distorm3'],
'packages' : ['distorm3'],
'package_dir' : { '' : 'python' },
'cmdclass' : { 'build' : custom_build,
'build_clib' : custom_build_clib,
'clean' : custom_clean,
'sdist' : custom_sdist },
'libraries' : libraries,
'package_data' : {'distorm3': package_data},
# Metadata
'name' : 'distorm3',
'version' : '3.3.4',
'description' : 'The goal of diStorm3 is to decode x86/AMD64' \
' binary streams and return a structure that' \
' describes each instruction.',
'long_description' : (
'Powerful Disassembler Library For AMD64\n'
'by Gil Dabah ([email protected])\n'
'\n'
'Python bindings by Mario Vilas ([email protected])'
),
'author' : 'Gil Dabah',
'author_email' : 'distorm'+chr(64)+'gmail'+chr(0x2e)+'com',
'maintainer' : 'Gil Dabah',
'maintainer_email' : 'distorm'+chr(64)+'gmail'+chr(0x2e)+'com',
'url' : 'https://github.com/gdabah/distorm/',
'download_url' : 'https://github.com/gdabah/distorm/',
'platforms' : ['cygwin', 'win', 'linux', 'macosx'],
'classifiers' : [
'License :: OSI Approved :: BSD License',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Disassemblers',
'Topic :: Software Development :: Libraries :: Python Modules',
]
}
# Call the setup function
setup(**options)
if __name__ == '__main__':
main()