blob: 096e8bdd4bef1f1f162323c3f520b50341505b26 [file] [log] [blame]
Craig Tiller6169d5f2016-03-31 07:46:18 -07001# Copyright 2015, Google Inc.
Nathaniel Manistab68f3d12015-01-23 21:32:47 +00002# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met:
7#
8# * Redistributions of source code must retain the above copyright
9# notice, this list of conditions and the following disclaimer.
10# * Redistributions in binary form must reproduce the above
11# copyright notice, this list of conditions and the following disclaimer
12# in the documentation and/or other materials provided with the
13# distribution.
14# * Neither the name of Google Inc. nor the names of its
15# contributors may be used to endorse or promote products derived from
16# this software without specific prior written permission.
17#
18# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29
Nathaniel Manistab8b0adf2015-01-29 00:30:51 +000030"""A setup module for the GRPC Python package."""
Ken Payson5998cd72016-08-10 15:39:43 -070031from distutils import cygwinccompiler
Masood Malekghassemiabdff3d2016-07-18 13:26:25 -070032from distutils import extension as _extension
Masood Malekghassemi398b06e2016-07-15 23:17:41 -070033from distutils import util
Masood Malekghassemi743c10c2015-06-16 18:05:27 -070034import os
Masood Malekghassemid65632a2015-07-27 14:30:09 -070035import os.path
Masood Malekghassemiabdff3d2016-07-18 13:26:25 -070036import pkg_resources
Masood Malekghassemi586e3832016-06-03 19:29:12 -070037import platform
Masood Malekghassemi398b06e2016-07-15 23:17:41 -070038import re
Ken Paysonfe754b42016-06-23 12:32:07 -070039import shlex
Masood Malekghassemi6d2ef172016-01-04 15:33:17 -080040import shutil
Alexander Staubo8eac91e2015-04-06 12:06:22 -040041import sys
Ken Payson1efb6012016-06-08 13:06:44 -070042import sysconfig
Nathaniel Manistab68f3d12015-01-23 21:32:47 +000043
Masood Malekghassemi743c10c2015-06-16 18:05:27 -070044import setuptools
Masood Malekghassemib7e7b3f2015-12-17 00:16:49 -080045from setuptools.command import egg_info
46
47# Redirect the manifest template from MANIFEST.in to PYTHON-MANIFEST.in.
48egg_info.manifest_maker.template = 'PYTHON-MANIFEST.in'
Masood Malekghassemi743c10c2015-06-16 18:05:27 -070049
Leifur Halldor Asgeirsson38a3d7a2016-03-01 10:00:08 -050050PY3 = sys.version_info.major == 3
Masood Malekghassemi58a04942016-07-16 01:42:52 -070051PYTHON_STEM = os.path.join('src', 'python', 'grpcio')
52CORE_INCLUDE = ('include', '.',)
53BORINGSSL_INCLUDE = (os.path.join('third_party', 'boringssl', 'include'),)
54ZLIB_INCLUDE = (os.path.join('third_party', 'zlib'),)
Masood Malekghassemi116982e2015-12-11 15:53:38 -080055
Masood Malekghassemid65632a2015-07-27 14:30:09 -070056# Ensure we're in the proper directory whether or not we're being used by pip.
57os.chdir(os.path.dirname(os.path.abspath(__file__)))
Masood Malekghassemi58a1dc22016-01-21 14:23:55 -080058sys.path.insert(0, os.path.abspath(PYTHON_STEM))
Masood Malekghassemid65632a2015-07-27 14:30:09 -070059
Masood Malekghassemi116982e2015-12-11 15:53:38 -080060# Break import-style to ensure we can actually find our in-repo dependencies.
Ken Payson5998cd72016-08-10 15:39:43 -070061import _spawn_patch
Masood Malekghassemid65632a2015-07-27 14:30:09 -070062import commands
Masood Malekghassemi116982e2015-12-11 15:53:38 -080063import grpc_core_dependencies
Craig Tillerf008f062016-02-08 12:48:03 -080064import grpc_version
Masood Malekghassemi743c10c2015-06-16 18:05:27 -070065
Ken Payson5998cd72016-08-10 15:39:43 -070066_spawn_patch.monkeypatch_spawn()
Masood Malekghassemi586e3832016-06-03 19:29:12 -070067
Masood Malekghassemidf97aec2016-01-11 16:19:14 -080068LICENSE = '3-clause BSD'
69
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -070070# Environment variable to determine whether or not the Cython extension should
71# *use* Cython or use the generated C files. Note that this requires the C files
72# to have been generated by building first *with* Cython support.
73BUILD_WITH_CYTHON = os.environ.get('GRPC_PYTHON_BUILD_WITH_CYTHON', False)
Masood Malekghassemi743c10c2015-06-16 18:05:27 -070074
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -070075# Environment variable to determine whether or not to enable coverage analysis
76# in Cython modules.
77ENABLE_CYTHON_TRACING = os.environ.get(
78 'GRPC_PYTHON_ENABLE_CYTHON_TRACING', False)
79
Masood Malekghassemi586e3832016-06-03 19:29:12 -070080# There are some situations (like on Windows) where CC, CFLAGS, and LDFLAGS are
81# entirely ignored/dropped/forgotten by distutils and its Cygwin/MinGW support.
82# We use these environment variables to thus get around that without locking
83# ourselves in w.r.t. the multitude of operating systems this ought to build on.
Ken Payson5998cd72016-08-10 15:39:43 -070084# We can also use these variables as a way to inject environment-specific
85# compiler/linker flags. We assume GCC-like compilers and/or MinGW as a
86# reasonable default.
87EXTRA_ENV_COMPILE_ARGS = os.environ.get('GRPC_PYTHON_CFLAGS', None)
88EXTRA_ENV_LINK_ARGS = os.environ.get('GRPC_PYTHON_LDFLAGS', None)
89if EXTRA_ENV_COMPILE_ARGS is None:
90 EXTRA_ENV_COMPILE_ARGS = ''
91 if 'win32' in sys.platform and sys.version_info < (3, 5):
92 # We use define flags here and don't directly add to DEFINE_MACROS below to
93 # ensure that the expert user/builder has a way of turning it off (via the
94 # envvars) without adding yet more GRPC-specific envvars.
95 # See https://sourceforge.net/p/mingw-w64/bugs/363/
96 if '32' in platform.architecture()[0]:
97 EXTRA_ENV_COMPILE_ARGS += ' -D_ftime=_ftime32 -D_timeb=__timeb32 -D_ftime_s=_ftime32_s'
98 else:
99 EXTRA_ENV_COMPILE_ARGS += ' -D_ftime=_ftime64 -D_timeb=__timeb64'
100 elif "linux" in sys.platform or "darwin" in sys.platform:
101 EXTRA_ENV_COMPILE_ARGS += ' -fno-wrapv'
102if EXTRA_ENV_LINK_ARGS is None:
103 EXTRA_ENV_LINK_ARGS = ''
104 if "linux" in sys.platform or "darwin" in sys.platform:
105 EXTRA_ENV_LINK_ARGS += ' -lpthread'
106 elif "win32" in sys.platform and sys.version_info < (3, 5):
107 msvcr = cygwinccompiler.get_msvcr()[0]
108 # TODO(atash) sift through the GCC specs to see if libstdc++ can have any
109 # influence on the linkage outcome on MinGW for non-C++ programs.
110 EXTRA_ENV_LINK_ARGS += (
111 ' -static-libgcc -static-libstdc++ -mcrtdll={msvcr} '
112 '-static'.format(msvcr=msvcr))
113
114EXTRA_COMPILE_ARGS = shlex.split(EXTRA_ENV_COMPILE_ARGS)
115EXTRA_LINK_ARGS = shlex.split(EXTRA_ENV_LINK_ARGS)
Masood Malekghassemi586e3832016-06-03 19:29:12 -0700116
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -0700117CYTHON_EXTENSION_PACKAGE_NAMES = ()
Masood Malekghassemi5a65bcd2015-09-25 11:27:10 -0700118
Masood Malekghassemi116982e2015-12-11 15:53:38 -0800119CYTHON_EXTENSION_MODULE_NAMES = ('grpc._cython.cygrpc',)
Masood Malekghassemi5a65bcd2015-09-25 11:27:10 -0700120
Masood Malekghassemi3acddb22016-07-13 18:38:33 -0700121CYTHON_HELPER_C_FILES = ()
Masood Malekghassemidf1e07e2016-02-02 14:17:14 -0800122
Masood Malekghassemi586e3832016-06-03 19:29:12 -0700123CORE_C_FILES = tuple(grpc_core_dependencies.CORE_SOURCE_FILES)
Masood Malekghassemidf1e07e2016-02-02 14:17:14 -0800124
Masood Malekghassemi387e1162016-01-05 10:16:12 -0800125EXTENSION_INCLUDE_DIRECTORIES = (
Masood Malekghassemi0cc27922016-01-22 16:32:41 -0800126 (PYTHON_STEM,) + CORE_INCLUDE + BORINGSSL_INCLUDE + ZLIB_INCLUDE)
Nathaniel Manistaa4ead5d2015-01-31 01:33:27 +0000127
Masood Malekghassemi10509a22016-02-03 13:32:22 -0800128EXTENSION_LIBRARIES = ()
Masood Malekghassemic9c53ee2016-02-03 10:30:23 -0800129if "linux" in sys.platform:
Craig Tiller4bef7ce2016-02-02 08:38:43 -0800130 EXTENSION_LIBRARIES += ('rt',)
Masood Malekghassemi10509a22016-02-03 13:32:22 -0800131if not "win32" in sys.platform:
132 EXTENSION_LIBRARIES += ('m',)
Masood Malekghassemi586e3832016-06-03 19:29:12 -0700133if "win32" in sys.platform:
Ken Payson5998cd72016-08-10 15:39:43 -0700134 EXTENSION_LIBRARIES += ('advapi32', 'ws2_32',)
Nathaniel Manistaa4ead5d2015-01-31 01:33:27 +0000135
Masood Malekghassemi58a04942016-07-16 01:42:52 -0700136DEFINE_MACROS = (
137 ('OPENSSL_NO_ASM', 1), ('_WIN32_WINNT', 0x600),
138 ('GPR_BACKWARDS_COMPATIBILITY_MODE', 1),)
Masood Malekghassemi586e3832016-06-03 19:29:12 -0700139if "win32" in sys.platform:
Ken Payson5998cd72016-08-10 15:39:43 -0700140 DEFINE_MACROS += (('WIN32_LEAN_AND_MEAN', 1),)
Masood Malekghassemi586e3832016-06-03 19:29:12 -0700141 if '64bit' in platform.architecture()[0]:
142 DEFINE_MACROS += (('MS_WIN64', 1),)
Ken Payson5998cd72016-08-10 15:39:43 -0700143 elif sys.version_info >= (3, 5):
144 # For some reason, this is needed to get access to inet_pton/inet_ntop
145 # on msvc, but only for 32 bits
146 DEFINE_MACROS += (('NTDDI_VERSION', 0x06000000),)
Masood Malekghassemi743c10c2015-06-16 18:05:27 -0700147
Masood Malekghassemi586e3832016-06-03 19:29:12 -0700148LDFLAGS = tuple(EXTRA_LINK_ARGS)
149CFLAGS = tuple(EXTRA_COMPILE_ARGS)
Craig Tiller4bef7ce2016-02-02 08:38:43 -0800150if "linux" in sys.platform:
151 LDFLAGS += ('-Wl,-wrap,memcpy',)
152if "linux" in sys.platform or "darwin" in sys.platform:
Ken Payson5998cd72016-08-10 15:39:43 -0700153 CFLAGS += ('-fvisibility=hidden',)
154 pymodinit_type = 'PyObject*' if PY3 else 'void'
155 pymodinit = '__attribute__((visibility ("default"))) {}'.format(pymodinit_type)
156 DEFINE_MACROS += (('PyMODINIT_FUNC', pymodinit),)
Craig Tiller4bef7ce2016-02-02 08:38:43 -0800157
Ken Payson1efb6012016-06-08 13:06:44 -0700158# By default, Python3 distutils enforces compatibility of
159# c plugins (.so files) with the OSX version Python3 was built with.
160# For Python3.4, this is OSX 10.6, but we need Thread Local Support (__thread)
161if 'darwin' in sys.platform and PY3:
162 mac_target = sysconfig.get_config_var('MACOSX_DEPLOYMENT_TARGET')
163 if mac_target and (pkg_resources.parse_version(mac_target) <
164 pkg_resources.parse_version('10.7.0')):
165 os.environ['MACOSX_DEPLOYMENT_TARGET'] = '10.7'
Masood Malekghassemi398b06e2016-07-15 23:17:41 -0700166 os.environ['_PYTHON_HOST_PLATFORM'] = re.sub(
167 r'macosx-[0-9]+\.[0-9]+-(.+)',
168 r'macosx-10.7-\1',
169 util.get_platform())
Ken Payson1efb6012016-06-08 13:06:44 -0700170
171
Leifur Halldor Asgeirsson554c7dd2016-02-18 17:24:05 -0500172def cython_extensions(module_names, extra_sources, include_dirs,
Masood Malekghassemidf1e07e2016-02-02 14:17:14 -0800173 libraries, define_macros, build_with_cython=False):
Masood Malekghassemi68a94c82016-03-09 11:45:07 -0800174 # Set compiler directives linetrace argument only if we care about tracing;
175 # this is due to Cython having different behavior between linetrace being
176 # False and linetrace being unset. See issue #5689.
177 cython_compiler_directives = {}
Masood Malekghassemi387e1162016-01-05 10:16:12 -0800178 if ENABLE_CYTHON_TRACING:
179 define_macros = define_macros + [('CYTHON_TRACE_NOGIL', 1)]
Masood Malekghassemi68a94c82016-03-09 11:45:07 -0800180 cython_compiler_directives['linetrace'] = True
Masood Malekghassemi5a65bcd2015-09-25 11:27:10 -0700181 file_extension = 'pyx' if build_with_cython else 'c'
Masood Malekghassemi116982e2015-12-11 15:53:38 -0800182 module_files = [os.path.join(PYTHON_STEM,
183 name.replace('.', '/') + '.' + file_extension)
Masood Malekghassemi5a65bcd2015-09-25 11:27:10 -0700184 for name in module_names]
185 extensions = [
186 _extension.Extension(
Masood Malekghassemi116982e2015-12-11 15:53:38 -0800187 name=module_name,
Masood Malekghassemidf1e07e2016-02-02 14:17:14 -0800188 sources=[module_file] + extra_sources,
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -0700189 include_dirs=include_dirs, libraries=libraries,
Masood Malekghassemi387e1162016-01-05 10:16:12 -0800190 define_macros=define_macros,
Craig Tillera7f3e052016-02-05 15:02:39 -0800191 extra_compile_args=list(CFLAGS),
192 extra_link_args=list(LDFLAGS),
Masood Malekghassemi5a65bcd2015-09-25 11:27:10 -0700193 ) for (module_name, module_file) in zip(module_names, module_files)
194 ]
195 if build_with_cython:
196 import Cython.Build
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -0700197 return Cython.Build.cythonize(
198 extensions,
Masood Malekghassemi116982e2015-12-11 15:53:38 -0800199 include_path=include_dirs,
Masood Malekghassemi68a94c82016-03-09 11:45:07 -0800200 compiler_directives=cython_compiler_directives)
Masood Malekghassemi5a65bcd2015-09-25 11:27:10 -0700201 else:
202 return extensions
203
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -0700204CYTHON_EXTENSION_MODULES = cython_extensions(
Leifur Halldor Asgeirsson554c7dd2016-02-18 17:24:05 -0500205 list(CYTHON_EXTENSION_MODULE_NAMES),
Masood Malekghassemidf1e07e2016-02-02 14:17:14 -0800206 list(CYTHON_HELPER_C_FILES) + list(CORE_C_FILES),
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -0700207 list(EXTENSION_INCLUDE_DIRECTORIES), list(EXTENSION_LIBRARIES),
Masood Malekghassemi1d177812016-01-12 09:21:57 -0800208 list(DEFINE_MACROS), bool(BUILD_WITH_CYTHON))
Masood Malekghassemi5a65bcd2015-09-25 11:27:10 -0700209
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -0700210PACKAGE_DIRECTORIES = {
Masood Malekghassemi116982e2015-12-11 15:53:38 -0800211 '': PYTHON_STEM,
Nathaniel Manistab8b0adf2015-01-29 00:30:51 +0000212}
213
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -0700214INSTALL_REQUIRES = (
Ken Payson2b7fae02016-06-28 17:20:37 -0700215 'six>=1.5.2',
Nathaniel Manistaa1880222015-09-10 22:16:04 +0000216 'enum34>=1.0.4',
217 'futures>=2.2.0',
Masood Malekghassemiad32ff42016-01-21 15:15:38 -0800218 # TODO(atash): eventually split the grpcio package into a metapackage
219 # depending on protobuf and the runtime component (independent of protobuf)
Ken Paysone5fd01a2016-08-02 12:06:21 -0700220 'protobuf>=3.0.0',
Masood Malekghassemid65632a2015-07-27 14:30:09 -0700221)
222
Ken Payson2b7fae02016-06-28 17:20:37 -0700223SETUP_REQUIRES = INSTALL_REQUIRES + (
Masood Malekghassemid65632a2015-07-27 14:30:09 -0700224 'sphinx>=1.3',
Ken Payson2b7fae02016-06-28 17:20:37 -0700225 'sphinx_rtd_theme>=0.1.8',
226 'six>=1.10',
227)
Masood Malekghassemid65632a2015-07-27 14:30:09 -0700228
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -0700229COMMAND_CLASS = {
Masood Malekghassemi791cc312015-07-27 14:22:33 -0700230 'doc': commands.SphinxDocumentation,
Masood Malekghassemi5c147632015-07-31 14:08:19 -0700231 'build_project_metadata': commands.BuildProjectMetadata,
232 'build_py': commands.BuildPy,
Masood Malekghassemi1d177812016-01-12 09:21:57 -0800233 'build_ext': commands.BuildExt,
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -0700234 'gather': commands.Gather,
Masood Malekghassemid65632a2015-07-27 14:30:09 -0700235}
236
Masood Malekghassemi6d2ef172016-01-04 15:33:17 -0800237# Ensure that package data is copied over before any commands have been run:
Masood Malekghassemi58a04942016-07-16 01:42:52 -0700238credentials_dir = os.path.join(PYTHON_STEM, 'grpc', '_cython', '_credentials')
Masood Malekghassemi6d2ef172016-01-04 15:33:17 -0800239try:
240 os.mkdir(credentials_dir)
241except OSError:
242 pass
Masood Malekghassemi58a04942016-07-16 01:42:52 -0700243shutil.copyfile(os.path.join('etc', 'roots.pem'),
244 os.path.join(credentials_dir, 'roots.pem'))
Masood Malekghassemi6d2ef172016-01-04 15:33:17 -0800245
Masood Malekghassemidf1e07e2016-02-02 14:17:14 -0800246PACKAGE_DATA = {
Masood Malekghassemif7474092016-02-12 12:04:53 -0800247 # Binaries that may or may not be present in the final installation, but are
248 # mentioned here for completeness.
Masood Malekghassemidf1e07e2016-02-02 14:17:14 -0800249 'grpc._cython': [
Nathaniel Manistafa6cad72016-02-05 21:26:54 +0000250 '_credentials/roots.pem',
Masood Malekghassemidf1e07e2016-02-02 14:17:14 -0800251 '_windows/grpc_c.32.python',
252 '_windows/grpc_c.64.python',
253 ],
254}
Masood Malekghassemi1ff429d2016-06-02 16:39:20 -0700255PACKAGES = setuptools.find_packages(PYTHON_STEM)
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -0700256
Masood Malekghassemiab5309c2016-05-05 18:39:01 -0700257setuptools.setup(
258 name='grpcio',
259 version=grpc_version.VERSION,
260 license=LICENSE,
261 ext_modules=CYTHON_EXTENSION_MODULES,
262 packages=list(PACKAGES),
263 package_dir=PACKAGE_DIRECTORIES,
Masood Malekghassemiab5309c2016-05-05 18:39:01 -0700264 package_data=PACKAGE_DATA,
265 install_requires=INSTALL_REQUIRES,
266 setup_requires=SETUP_REQUIRES,
267 cmdclass=COMMAND_CLASS,
Masood Malekghassemiab5309c2016-05-05 18:39:01 -0700268)