Uh oh!
There was an error while loading. Please reload this page.
forked from grpc/grpc
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommands.py
More file actions
Latest commit
334 lines (279 loc) · 12.3 KB
/
Copy pathcommands.py
File metadata and controls
334 lines (279 loc) · 12.3 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
# Copyright 2015 gRPC authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Provides distutils command classes for the GRPC Python setup process."""
from __future__ importprint_function
importdistutils
importglob
importos
importos.path
importplatform
importre
importshutil
importsubprocess
importsys
importtraceback
importsetuptools
fromsetuptools.commandimportbuild_ext
fromsetuptools.commandimportbuild_py
fromsetuptools.commandimporteasy_install
fromsetuptools.commandimportinstall
fromsetuptools.commandimporttest
importsupport
PYTHON_STEM=os.path.dirname(os.path.abspath(__file__))
GRPC_STEM=os.path.abspath(PYTHON_STEM+'../../../../')
PROTO_STEM=os.path.join(GRPC_STEM, 'src', 'proto')
PROTO_GEN_STEM=os.path.join(GRPC_STEM, 'src', 'python', 'gens')
CYTHON_STEM=os.path.join(PYTHON_STEM, 'grpc', '_cython')
classCommandError(Exception):
"""Simple exception class for GRPC custom commands."""
# TODO(atash): Remove this once PyPI has better Linux bdist support. See
# https://bitbucket.org/pypa/pypi/issues/120/binary-wheels-for-linux-are-not-supported
def_get_grpc_custom_bdist(decorated_basename, target_bdist_basename):
"""Returns a string path to a bdist file for Linux to install.
If we can retrieve a pre-compiled bdist from online, uses it. Else, emits a
warning and builds from source.
"""
# TODO(atash): somehow the name that's returned from `wheel` is different
# between different versions of 'wheel' (but from a compatibility standpoint,
# the names are compatible); we should have some way of determining name
# compatibility in the same way `wheel` does to avoid having to rename all of
# the custom wheels that we build/upload to GCS.
# Break import style to ensure that setup.py has had a chance to install the
# relevant package.
fromsix.moves.urllibimportrequest
decorated_path=decorated_basename+GRPC_CUSTOM_BDIST_EXT
try:
url=BINARIES_REPOSITORY+'/{target}'.format(target=decorated_path)
bdist_data=request.urlopen(url).read()
exceptIOErroraserror:
raiseCommandError('{}\n\nCould not find the bdist {}: {}'.format(
traceback.format_exc(), decorated_path, error.message))
# Our chosen local bdist path.
bdist_path=target_bdist_basename+GRPC_CUSTOM_BDIST_EXT
try:
withopen(bdist_path, 'w') asbdist_file:
bdist_file.write(bdist_data)
exceptIOErroraserror:
raiseCommandError('{}\n\nCould not write grpcio bdist: {}'.format(
traceback.format_exc(), error.message))
returnbdist_path
classSphinxDocumentation(setuptools.Command):
"""Command to generate documentation via sphinx."""
description='generate sphinx documentation'
user_options= []
definitialize_options(self):
pass
deffinalize_options(self):
pass
defrun(self):
# We import here to ensure that setup.py has had a chance to install the
# relevant package eggs first.
importsphinx.cmd.build
source_dir=os.path.join(GRPC_STEM, 'doc', 'python', 'sphinx')
target_dir=os.path.join(GRPC_STEM, 'doc', 'build')
exit_code=sphinx.cmd.build.build_main(
['-b', 'html', '-W', '--keep-going', source_dir, target_dir])
ifexit_codeisnot0:
raiseCommandError(
"Documentation generation has warnings or errors")
classBuildProjectMetadata(setuptools.Command):
"""Command to generate project metadata in a module."""
description='build grpcio project metadata files'
user_options= []
definitialize_options(self):
pass
deffinalize_options(self):
pass
defrun(self):
withopen(os.path.join(PYTHON_STEM, 'grpc/_grpcio_metadata.py'),
'w') asmodule_file:
module_file.write('__version__ = """{}"""'.format(
self.distribution.get_version()))
classBuildPy(build_py.build_py):
"""Custom project build command."""
defrun(self):
self.run_command('build_project_metadata')
build_py.build_py.run(self)
def_poison_extensions(extensions, message):
"""Includes a file that will always fail to compile in all extensions."""
poison_filename=os.path.join(PYTHON_STEM, 'poison.c')
withopen(poison_filename, 'w') aspoison:
poison.write('#error {}'.format(message))
forextensioninextensions:
extension.sources= [poison_filename]
defcheck_and_update_cythonization(extensions):
"""Replace .pyx files with their generated counterparts and return whether or
not cythonization still needs to occur."""
forextensioninextensions:
generated_pyx_sources= []
other_sources= []
forsourceinextension.sources:
base, file_ext=os.path.splitext(source)
iffile_ext=='.pyx':
generated_pyx_source=next((base+gen_extforgen_extin (
'.c',
'.cpp',
) ifos.path.isfile(base+gen_ext)), None)
ifgenerated_pyx_source:
generated_pyx_sources.append(generated_pyx_source)
else:
sys.stderr.write('Cython-generated files are missing...\n')
returnFalse
else:
other_sources.append(source)
extension.sources=generated_pyx_sources+other_sources
sys.stderr.write('Found cython-generated files...\n')
returnTrue
deftry_cythonize(extensions, linetracing=False, mandatory=True):
"""Attempt to cythonize the extensions.
Args:
extensions: A list of `distutils.extension.Extension`.
linetracing: A bool indicating whether or not to enable linetracing.
mandatory: Whether or not having Cython-generated files is mandatory. If it
is, extensions will be poisoned when they can't be fully generated.
"""
try:
# Break import style to ensure we have access to Cython post-setup_requires
importCython.Build
exceptImportError:
ifmandatory:
sys.stderr.write(
"This package needs to generate C files with Cython but it cannot. "
"Poisoning extension sources to disallow extension commands...")
_poison_extensions(
extensions,
"Extensions have been poisoned due to missing Cython-generated code."
)
returnextensions
cython_compiler_directives= {}
iflinetracing:
additional_define_macros= [('CYTHON_TRACE_NOGIL', '1')]
cython_compiler_directives['linetrace'] =True
returnCython.Build.cythonize(
extensions,
include_path=[
include_dirforextensioninextensions
forinclude_dirinextension.include_dirs
] + [CYTHON_STEM],
compiler_directives=cython_compiler_directives)
classBuildExt(build_ext.build_ext):
"""Custom build_ext command to enable compiler-specific flags."""
C_OPTIONS= {
'unix': ('-pthread',),
'msvc': (),
}
LINK_OPTIONS= {}
defbuild_extensions(self):
defcompiler_ok_with_extra_std():
"""Test if default compiler is okay with specifying c++ version
when invoked in C mode. GCC is okay with this, while clang is not.
"""
ifplatform.system() !='Windows':
returnFalse
# TODO(lidiz) Remove the generated a.out for success tests.
cc_test=subprocess.Popen(['cc', '-x', 'c', '-std=c++11', '-'],
stdin=subprocess.PIPE,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE)
_, cc_err=cc_test.communicate(input=b'int main(){return 0;}')
returnnot'invalid argument'instr(cc_err)
# This special conditioning is here due to difference of compiler
# behavior in gcc and clang. The clang doesn't take --stdc++11
# flags but gcc does. Since the setuptools of Python only support
# all C or all C++ compilation, the mix of C and C++ will crash.
# *By default*, macOS and FreBSD use clang and Linux use gcc
#
# If we are not using a permissive compiler that's OK with being
# passed wrong std flags, swap out compile function by adding a filter
# for it.
ifnotcompiler_ok_with_extra_std():
old_compile=self.compiler._compile
defnew_compile(obj, src, ext, cc_args, extra_postargs, pp_opts):
ifsrc[-2:] =='.c':
extra_postargs= [
argforarginextra_postargsifnot'-std=c++'inarg
]
returnold_compile(obj, src, ext, cc_args, extra_postargs,
pp_opts)
self.compiler._compile=new_compile
compiler=self.compiler.compiler_type
ifcompilerinBuildExt.C_OPTIONS:
forextensioninself.extensions:
extension.extra_compile_args+=list(
BuildExt.C_OPTIONS[compiler])
ifcompilerinBuildExt.LINK_OPTIONS:
forextensioninself.extensions:
extension.extra_link_args+=list(
BuildExt.LINK_OPTIONS[compiler])
ifnotcheck_and_update_cythonization(self.extensions):
self.extensions=try_cythonize(self.extensions)
try:
build_ext.build_ext.build_extensions(self)
exceptExceptionaserror:
formatted_exception=traceback.format_exc()
support.diagnose_build_ext_error(self, error, formatted_exception)
raiseCommandError(
"Failed `build_ext` step:\n{}".format(formatted_exception))
classGather(setuptools.Command):
"""Command to gather project dependencies."""
description='gather dependencies for grpcio'
user_options= [
('test', 't', 'flag indicating to gather test dependencies'),
('install', 'i', 'flag indicating to gather install dependencies')
]
definitialize_options(self):
self.test=False
self.install=False
deffinalize_options(self):
# distutils requires this override.
pass
defrun(self):
ifself.installandself.distribution.install_requires:
self.distribution.fetch_build_eggs(
self.distribution.install_requires)
ifself.testandself.distribution.tests_require:
self.distribution.fetch_build_eggs(self.distribution.tests_require)
classClean(setuptools.Command):
"""Command to clean build artifacts."""
description='Clean build artifacts.'
user_options= [
('all', 'a', 'a phony flag to allow our script to continue'),
]
_FILE_PATTERNS= (
'python_build',
'src/python/grpcio/__pycache__/',
'src/python/grpcio/grpc/_cython/cygrpc.cpp',
'src/python/grpcio/grpc/_cython/*.so',
'src/python/grpcio/grpcio.egg-info/',
)
_CURRENT_DIRECTORY=os.path.normpath(
os.path.join(os.path.dirname(os.path.realpath(__file__)), "../../.."))
definitialize_options(self):
self.all=False
deffinalize_options(self):
pass
defrun(self):
forpath_specinself._FILE_PATTERNS:
this_glob=os.path.normpath(
os.path.join(Clean._CURRENT_DIRECTORY, path_spec))
abs_paths=glob.glob(this_glob)
forpathinabs_paths:
ifnotstr(path).startswith(Clean._CURRENT_DIRECTORY):
raiseValueError(
"Cowardly refusing to delete {}.".format(path))
print("Removing {}".format(os.path.relpath(path)))
ifos.path.isfile(path):
os.remove(str(path))
else:
shutil.rmtree(str(path))