This repository has been archived by the owner on Nov 28, 2022. It is now read-only.
forked from celery/librabbitmq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
248 lines (219 loc) · 7.56 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
import os
import platform
import subprocess
import sys
from setuptools import setup, find_packages
# --with-librabbitmq=<dir>: path to librabbitmq package if needed
LRMQDIST = lambda *x: os.path.join('clib', *x)
LRMQSRC = lambda *x: LRMQDIST('librabbitmq', *x)
SPECPATH = lambda *x: os.path.join('rabbitmq-codegen', *x)
PYCP = lambda *x: os.path.join('Modules', '_librabbitmq', *x)
CMD_CONFIGURE = """\
/bin/sh configure --disable-tools \
--disable-docs \
--disable-dependency-tracking \
"""
def senv(*k__v, **kwargs):
sep = kwargs.get('sep', ' ')
restore = {}
for k, v in k__v:
prev = restore[k] = os.environ.get(k)
os.environ[k] = (prev + sep if prev else '') + str(v)
return dict((k, v) for k, v in restore.iteritems() if v is not None)
def codegen():
codegen = LRMQSRC('codegen.py')
spec = SPECPATH('amqp-rabbitmq-0.9.1.json')
sys.path.insert(0, SPECPATH())
commands = [
(sys.executable, codegen, 'header', spec, LRMQSRC('amqp_framing.h')),
(sys.executable, codegen, 'body', spec, LRMQSRC('amqp_framing.c')),
]
restore = senv(('PYTHONPATH', SPECPATH()), sep=':')
try:
for command in commands:
print('- generating %r' % command[-1])
print(' '.join(command))
os.system(' '.join(command))
finally:
os.environ.update(restore)
def create_builder():
from setuptools import Extension
from setuptools.command.develop import develop as _develop
from distutils.command.build import build as _build
cmd = None
pkgdirs = [] # incdirs and libdirs get these
libs = []
defs = []
incdirs = []
libdirs = []
def append_env(L, e):
v = os.environ.get(e)
if v and os.path.exists(v):
L.append(v)
append_env(pkgdirs, 'LIBRABBITMQ')
# Hack up sys.argv, yay
unprocessed = []
for arg in sys.argv[1:]:
if arg == '--gen-setup':
cmd = arg[2:]
elif '=' in arg:
if arg.startswith('--with-librabbitmq='):
pkgdirs.append(arg.split('=', 1)[1])
continue
unprocessed.append(arg)
sys.argv[1:] = unprocessed
incdirs.append(LRMQSRC())
PyC_files = map(PYCP, [
'connection.c',
])
librabbit_files = map(LRMQSRC, [
'amqp_api.c',
'amqp_mem.c',
'amqp_url.c',
'amqp_connection.c',
'amqp_socket.c',
'amqp_framing.c',
'amqp_table.c',
])
incdirs.append(LRMQDIST()) # for config.h
if platform.system() == 'Windows':
incdirs.append(LRMQSRC('windows'))
librabbit_files.append(LRMQSRC('windows', 'socket.c'))
else:
incdirs.append(LRMQSRC('unix'))
librabbit_files.append(LRMQSRC('unix', 'socket.c'))
librabbitmq_ext = Extension(
'_librabbitmq',
sources=PyC_files + librabbit_files,
libraries=libs, include_dirs=incdirs,
library_dirs=libdirs, define_macros=defs,
)
# Hidden secret: if environment variable GEN_SETUP is set
# then generate Setup file.
if cmd == 'gen-setup':
line = ' '.join((
librabbitmq_ext.name,
' '.join('-l' + lib for lib in librabbitmq_ext.libraries),
' '.join('-I' + incdir for incdir in librabbitmq_ext.include_dirs),
' '.join('-L' + libdir for libdir in librabbitmq_ext.library_dirs),
' '.join('-D' + name + ('=' + str(value), '')[value is None] for
(name, value) in librabbitmq_ext.define_macros)))
open('Setup', 'w').write(line + '\n')
sys.exit(0)
class build(_build):
stdcflags = [
'-DHAVE_CONFIG_H',
]
if platform.system() != "SunOS":
stdcflags.append('-W -Wall')
if os.environ.get('PEDANTIC'):
# Python.h breaks -pedantic, so can only use it while developing.
stdcflags.append('-pedantic -Werror')
def run(self):
here = os.path.abspath(os.getcwd())
from distutils import sysconfig
config = sysconfig.get_config_vars()
try:
restore = senv(
('CFLAGS', config['CFLAGS']),
('LDFLAGS', config['LDFLAGS']),
)
try:
os.chdir(LRMQDIST())
if not os.path.isfile('config.h'):
print('- configure rabbitmq-c...')
os.system(CMD_CONFIGURE)
#print('- make rabbitmq-c...')
#os.chdir(LRMQSRC())
#os.system(''%s' all' % find_make())
finally:
os.environ.update(restore)
finally:
os.chdir(here)
restore = senv(
#('LDFLAGS', ' '.join(glob(LRMQSRC('*.o')))),
('CFLAGS', ' '.join(self.stdcflags)),
)
codegen()
try:
_build.run(self)
finally:
os.environ.update(restore)
class develop(_develop):
def run(self):
subprocess.check_call([find_make(), 'dist'], shell=True)
_develop.run(self)
return librabbitmq_ext, build, develop
def find_make(alt=('gmake', 'gnumake', 'make', 'nmake')):
for path in os.environ['PATH'].split(':'):
for make in (os.path.join(path, m) for m in alt):
if os.path.isfile(make):
return make
long_description = open('README.rst', 'U').read()
distmeta = open(PYCP('distmeta.h')).read().strip().splitlines()
distmeta = [item.split('\"')[1] for item in distmeta]
version = distmeta[0].strip()
author = distmeta[1].strip()
contact = distmeta[2].strip()
homepage = distmeta[3].strip()
ext_modules = []
cmdclass = {}
packages = []
install_requires = []
goahead = False
is_jython = sys.platform.startswith('java')
is_pypy = hasattr(sys, 'pypy_version_info')
is_py3k = sys.version_info[0] == 3
is_win = platform.system() == 'Windows'
if is_jython or is_pypy or is_py3k or is_win:
pass
elif find_make():
try:
librabbitmq_ext, build, develop = create_builder()
except Exception, exc:
print('Couldn not create builder: %r' % (exc, ))
raise
else:
goahead = True
ext_modules = [librabbitmq_ext]
cmdclass = {
'build': build,
'develop': develop
}
packages = find_packages(exclude=['ez_setup', 'tests', 'tests.*'])
else:
raise RuntimeError('This system does not have a working "make"')
if not goahead:
ext_modules = []
cmdclass = {}
packages = []
setup(
name='librabbitmq',
version=version,
url=homepage,
author=author,
author_email=contact,
license='MPL',
description='AMQP Client using the rabbitmq-c library.',
long_description=long_description,
test_suite='nose.collector',
zip_safe=False,
packages=packages,
cmdclass=cmdclass,
install_requires=install_requires,
ext_modules=ext_modules,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Operating System :: POSIX',
'Programming Language :: C',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: Implementation :: CPython',
'Intended Audience :: Developers',
'License :: OSI Approved :: Mozilla Public License 1.0 (MPL)',
'Topic :: Communications',
'Topic :: System :: Networking',
'Topic :: Software Development :: Libraries',
],
)